|
mysqli_stmt::data_seekmysqli_stmt_data_seekSeeks to an arbitrary row in statement result set DescriptionObject oriented style
void mysqli_stmt::data_seek
( int
$offset
)Procedural style
void mysqli_stmt_data_seek
( mysqli_stmt
$stmt
, int $offset
)Seeks to an arbitrary result pointer in the statement 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
<?php Example #2 Procedural style
<?php The above examples will output: City: Benin City Countrycode: NGA See Also
|