Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
This errors means that you either heven't fired the sql query with mysql_query(), or that there was an error when you did.
Check the query result with something like
PHP Code:
$result=mysql_query($query); if ($result === FALSE){ print mysql_error(); die(); }
__________________
Only a biker knows why a dog sticks his head out the window.
|