View Single Post
Old 07-29-2004, 09:41 AM   #1 (permalink)
hooloovoo
 
Junior Techie

Join Date: Mar 2004

Posts: 56

hooloovoo

Default MySQL errors. please help

mysql_fetch_array(): supplied argument is not a valid MySQL result resource

I keep getting the above error when entering the below code.

$result = mysql_query("SELECT , Message FROM LatestNews");
while ($row = mysql_fetch_array($result))
{
print "Message:".$row{'Message'}."
";
}


can anyone help?
hooloovoo is offline