mysqli_data_seek result->data_seek Adjusts the result pointer to an arbitary row in the result Description Procedural style: boolmysqli_data_seek objectresult intoffset Object oriented style (method): result bool data_seek intoffset The mysqli_data_seek function seeks to an arbitrary result pointer specified by the offset in the result set represented by result. The offset parameter must be between zero and the total number of rows minus one (0..mysqli_num_rows - 1). This function can only be used with unbuffered results attained from the use of the mysqli_store_result or mysqli_query functions. Return values &return.success; See also mysqli_store_result, mysqli_fetch_row, mysqli_num_rows. Example Object oriented style query( "DROP TABLE IF EXISTS friends"); $mysqli->query( "CREATE TABLE friends (id int, name varchar(30))"); $mysqli->query( "INSERT INTO friends VALUES (1, 'Greant'), (2, 'Stocker'), (3, 'Rethans'), (4, 'Wendel')"); /* Get some rows */ $query = "SELECT name FROM friends ORDER BY name"; $result = $mysqli->query( $query) or die(mysqli_error($link)); $total = $result->field_count; if ($total > 0) { // there is at least one row /* Get the last employee */ $result->data_seek($result->num_rows -1); $friend = $result->fetch_row(); printf ("Friends name : %s\n", $friend[0]); } $result->close(); $mysqli->close(); ?> ]]> Object oriented style 0) { /* there is at least one row */ /* Get the last employee */ mysqli_data_seek($result, mysqli_num_rows($result) -1); $friend = mysqli_fetch_row($result); printf ("Friends name : %s\n", $friend[0]); } mysqli_free_result($result); mysqli_close($link); ?> ]]>