|
mysqli_result::data_seekmysqli_data_seekAdjusts the result pointer to an arbitrary row in the result DescriptionObject oriented style
bool mysqli_result::data_seek
( int
$offset
)Procedural style
bool mysqli_data_seek
( mysqli_result
$result
, int $offset
)
The mysqli_data_seek function seeks to an arbitrary
result pointer specified by the Parameters
Return Values
Returns Notes
ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: City: Benin City Countrycode: NGA See Also
|