I had an error in my website that says
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in ../../../guestbook.php on line 117
When I check my line 117
while ($row=mysql_fetch_array($query)) {
And I think my query is wrong...
$query = mysql_query("SELECT * FROM guestbook WHERE permission='0' AND ignore='0' ORDER BY gbid DESC");
I think I always get an error when I use the word AND and I don't know how to make TWO WHERE conditions.
If I'm lack of description or codes needed to solve this, please do ask so that I can edit it.
Thank you! :)
mysql_error(). Also, if permission and ignore are numeric fields, you should use ` = 0` instead of ` = '0'`. – Corbin May 26 '12 at 4:04