|
mysqli_stmt::data_seekmysqli_stmt_data_seekAdjusts the result pointer to an arbitrary row in the buffered result DescriptionObject-oriented style
public void mysqli_stmt::data_seek(int
$offset )Procedural style void mysqli_stmt_data_seek(mysqli_stmt
$statement , int $offset )
This function moves the result set pointer of the buffered result set to
an arbitrary row specified by the This function works only on the buffered internal result set. mysqli_stmt_store_result must be called prior to mysqli_stmt_data_seek. Parameters
Return ValuesNo value is returned. ExamplesExample #1 Object-oriented style
Example #2 Procedural style
The above examples will output: City: Benin City Countrycode: NGA See Also
|