Jump to content

mysql_data_seek help


darkfreaks

Recommended Posts

I'm not sure what you are asking here.  mysql_num_rows returns the number of rows in a result set.

 

ysql_data_seek() moves the internal row pointer of the MySQL result associated with the specified result identifier to point to the specified row number. The next call to a MySQL fetch function, such as mysql_fetch_assoc(), would return that row.

 

row_number starts at 0. The row_number should be a value in the range from 0 to mysql_num_rows() - 1. However if the result set is empty ( mysql_num_rows() == 0), a seek to 0 will fail with a E_WARNING and mysql_data_seek() will return FALSE.

 

 

however if i enter 

 

somepage.php?modelID=0

somepage.php?modelID=NULL

somepage.php?modelID=

it just returns an empty model page which is fine.

 

but if i enter something which isnt in the database i get an offset error like

 

somepage.php?modelID=1

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.