Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
while loop causes mysql to return empty
Old 09-17-2008, 07:02 PM while loop causes mysql to return empty
Sleeping Troll's Avatar
Ultra Talker

Posts: 351
Name: Butch Begy
Trades: 0
Code:
 
$SQL="SELECT * FROM PreviewText Where ProjectID = $ProjectID"; 
$result=mysql_query($SQL);
$row=mysql_fetch_array($result);
echo "$row[0], $row[1], $row[2],";
Returns: 127, 1, This is a test

Code:
 
$SQL="SELECT * FROM PreviewText Where ProjectID = $ProjectID"; 
$result=mysql_query($SQL);
while($row=mysql_fetch_array($result));
{
echo "$row[0], $row[1], $row[2],";
}
returns ,,

Last edited by Sleeping Troll; 09-17-2008 at 07:24 PM..
Sleeping Troll is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-17-2008, 10:52 PM Re: while loop causes mysql to return empty
NullPointer's Avatar
Will Code for Food

Posts: 2,815
Name: Matt
Location: Irvine, CA
Trades: 0
You have a semicolon on your while statement. Remove it:

PHP Code:
$query "SELECT * FROM PreviewText Where ProjectID = $ProjectID"
$result mysql_query($query);
while(
$row mysql_fetch_array($result))
{
     echo 
"$row[0]$row[1]$row[2],";

__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
NullPointer is online now
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Reply     « Reply to while loop causes mysql to return empty
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46438 seconds with 12 queries