 |
[SOLVED] Warning: mysql_fetch_array() expects parameter 1 to be resource - PHP Coding Help - PHP Fre
Your code inside of the while() loop is reusing the $result variable, so the next time the while() condition is evaluated, you have a TRUE/FALSE value instead of the original result resource. Please be careful when reusing variables.
forums.phpfreaks.com |
 |