mysql error

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
User avatar
deeppak
Forum Commoner
Posts: 27
Joined: Thu Apr 06, 2006 6:31 am

mysql error

Post by deeppak »

mysql_data_seek(): Offset 82 is invalid for MySQL result index 11 (or the query data is unbuffered)


i am getting this error on my page sometimes it occur sometimes not every time what is this

why it is occuring kindly let me know

Regards,
Deeppak
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

Check the line number it gives you. mysql_data_seek() is for moving a pointer in a mysql result. 82 is the row you want to move it to (indexing starts at zero). Check how many rows are available with mysql_num_rows().
Post Reply