|
mysql_data_seekMove internal result pointer Warning
This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include:
Description
bool mysql_data_seek
( resource
$result
, int $row_number
)mysql_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.
Parameters
Return Values
Returns Examples
Example #1 mysql_data_seek example
<?php Notes
See Also
|