Jump to content

[SOLVED] Fetching data from a mysql database...


cwncool

Recommended Posts

(Please keep in mind this is my first script I've written using MySQL)
I have this code, trying to fetch the user's first name from the database and displaying it.
[code]<?php
session_start();
if(!isset($_SESSION['username'])) {
header("location:index.php");
}
include 'connect.php';
$user = $_SESSION['username'];

$name = mysql_query("SELECT first FROM users WHERE user='$user'");
echo $name;
?>[/code]
Instead of echoing the name, it says
Resource id #3.  Can someone please tell me how I can echo the name please?  Thanx!
[code]
<?php
session_start();
if(!isset($_SESSION['username'])) {
header("location:index.php");
}
include 'connect.php';
$user = $_SESSION['username'];

$name = mysql_query("SELECT first FROM users WHERE user='$user'");
mysql_fetch_array($name);
echo $name;
?>
[/code]
Yay, I got it to work with this...
[code]<?php
session_start();
if(!isset($_SESSION['username'])) {
header("location:index.php");
}
include 'connect.php';
$user = $_SESSION['username'];

$data = mysql_query("SELECT * FROM users WHERE user='$user'");
$data = mysql_fetch_array($data);
echo $data['first'];
?>[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.