New York Design & Development Forums  

Go Back   New York Design & Development Forums > Development > Website Programming
Connect with Facebook

Notices

Reply
 
LinkBack Thread Tools
Old 03-24-2006, 11:37 PM   #1 (permalink)
Loathor_Healer
Guest
 
Posts: n/a
Default Help with a PHP Query.

Heres what I got. My sessions work properly...but when I do this query it doesnt bring back anything from my database. what I want it to do is bring back the firstname and the lasname of the logged in user.

PHP Code:
[size="2"] if ($logged_in == 1) {
    echo 
'welcome back '.$_SESSION['username'].'';
 
$query sprintf("SELECT firstname, lastname FROM users WHERE '.$_SESSION['username'].'");


$result mysql_query($query);
if (!
$result) {
   
$message  'Invalid query: ' mysql_error() . "\n";
   
$message .= 'Whole query: ' $query;
   die(
$message);
}

while (
$row mysql_fetch_field($result)) {
   echo 
$row['firstname'];
   echo 
$row['lastname'];
}
mysql_free_result($result);[/size
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-25-2006, 01:24 AM   #2 (permalink)
Senior Member
Fanatic
 
Cota's Avatar
 
Join Date: Mar 2006
Age: 33
Posts: 414
Cota is a glorious beacon of lightCota is a glorious beacon of light
Default Re: Help with a PHP Query.

missing part of your where claus...WHERE colum = value
Cota is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-25-2006, 01:43 AM   #3 (permalink)
Junior Member
Casual Browser
 
verdammte's Avatar
 
Join Date: Mar 2006
Age: 29
Posts: 29
verdammte will become famous soon enough
Send a message via AIM to verdammte Send a message via MSN to verdammte
Default Re: Help with a PHP Query.

verdammte Schei! Thats all I have to say about that.Good work Coda,I can see you are gonna be a coda pimp around this forum house.
verdammte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-25-2006, 02:02 AM   #4 (permalink)
Senior Member
Fanatic
 
Cota's Avatar
 
Join Date: Mar 2006
Age: 33
Posts: 414
Cota is a glorious beacon of lightCota is a glorious beacon of light
Default Re: Help with a PHP Query.

what can I say, I try
Cota is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-25-2006, 07:21 PM   #5 (permalink)
Moderator
Aficionado
 
iughk's Avatar
 
Join Date: Feb 2006
Posts: 123
iughk is on a distinguished road
Default Re: Help with a PHP Query.

Looks like I’m going to have some competition. lol good job with the prompt reply Cota.
iughk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-25-2006, 08:15 PM   #6 (permalink)
Senior Member
Fanatic
 
Cota's Avatar
 
Join Date: Mar 2006
Age: 33
Posts: 414
Cota is a glorious beacon of lightCota is a glorious beacon of light
Default Re: Help with a PHP Query.

Trust me, PHP is not really my thing...but the problem was with the SQL..now we're talking database...
Cota is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Old 03-26-2006, 06:59 PM   #7 (permalink)
Loathor_Healer
Guest
 
Posts: n/a
Default Re: Help with a PHP Query.

Lol, Thanks guys I got it figured. Ill be here more often for PHP problems. My deal is database and HTML not PHP. so Ill be back posting more problems. Thanks for the help guys.
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 03:54 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13