Hello! I'm getting this error:
Warning: mysql_result(): Unable to jump to row 0 on MySQL result index 6
I'm not sure what it means or how to fix it. Can someone help me?
Thanks!
Your query returns nothing but you still try to fetch the first row. Always check if its giving you anything:
if (mysql_num_rows($result)>0) { ...