Quote:
Originally Posted by Salchester
As far as Redhead code goes, that doesn't work either, I keep getting greeted with the following error message.
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Documents and Settings\Dale Piper\Desktop\xampplite\htdocs\Array.php on line 36
|
That one is easy to debug.
PHP Code:
$result = mysql_query("select * from Birds");
if (!$result) { die(mysql_error()); }
And i want you to tell me what this code does, step by step.