Jump to content

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


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]
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.