View Single Post
Old 07-29-2004, 08:41 AM   #1 (permalink)
hooloovoo
Junior Techie
 
Join Date: Mar 2004
Posts: 56
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   Reply With Quote