I am learning php and reading Kevin Yanks book.
I got to the first part of php - loaded up my page and immediately got:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource blah blah
I have checked the case in everything and they are all correct...
the code I copied from the book at that is generating this error is:
// Display the text of each joke in a paragraph
while ($row = mysql_fetch_array($result)) {
echo '<p>' . $row['password'] . '</p>';
can anyone help please
townders