Complete PHP MySQL Reference
The mysql_data_seek() function moves the internal row pointer.
The internal row pointer is the current row position in a result returned by the mysql_query() function.
This function returns TRUE on success, or FALSE on failure.
| Parameter | Description |
|---|---|
| data | Required. Specifies which data pointer to use. The data pointer is the result from the mysql_query() function |
| row | Required. Specifies which record to move to. 0 indicates the first record |
Note: This function can only be used with mysql_query(), and not mysql_unbuffered_query().
The output of the code above could be:
Complete PHP MySQL Reference
Your message has been sent to W3Schools.