PDA

View Full Version : Could someone help me correct this?


tsl001
04/28/2005, 22:21
What can I do to correct this error!

Warning: mysql_result(): Unable to jump to row 0 on MySQL result index 9 in /home/eztorun/public_html/bonanza/admin/support.php on line 110

Thanks,

tsl001

iojam
04/29/2005, 15:14
You'd better quote a few lines of code near to the warning place. Generally, that means a poor php coding, like using mysql_result() function without checking the number of rows returned.
Most likely, in this case result set is empty and your script tries to get 0th row, which doesn't exists. It's recommended to use mysql_fetch_*() functions instead.