field_seek
Sets the field cursor to the given field offset.
field_seek()
/ mysqli_field_seek()
function sets the field cursor to the given field offset.
Set the field cursor to the second column in the result set ("Age"), use fetch_field() to get the field information, and then print the field name, table, and maximum length:
<?php $mysqli = new mysqli ( "localhost" , "my_user" , "my_password" , "my_db" ) ; if ( $mysqli -> connect_errno ) { echo "Failed to connect to MySQL: " . $mysqli -> connect_error ; exit ( ) ; } $sql = "SELECT Lastname, Age FROM Persons ORDER BY Lastname" ; if ( $result = $mysqli -> query ( $sql ) ) { // Get the field information of the second column $result = field_seek ( 1 ) ; $fieldinfo = $result -> fetch_field ( ) ; printf ( "Name: %s\n" , $fieldinfo -> name ) ; printf ( "Table: %s\n" , $fieldinfo -> table ) ; printf ( "Max. Len: %d\n" , $fieldinfo -> max_length ) ; $result -> free_result ( ) ; } $mysqli -> close ( ) ; ?>
Set the field cursor to the second column in the result set ("Age"), use mysqli_fetch_field() to get the field information, and then print the field name, table, and maximum length:
<?php $con = mysqli_connect ( "localhost" , "my_user" , "my_password" , "my_db" ) ; if ( mysqli_connect_errno ( ) ) { echo "Failed to connect to MySQL: " . mysqli_connect_error ( ) ; exit ( ) ; } $sql = "SELECT Lastname, Age FROM Persons ORDER BY Lastname" ; if ( $result = mysqli_query ( $con , $sql ) ) { // Get the field information of the second column mysqli_field_seek ( $result , 1 ) ; $fieldinfo = mysqli_fetch_field ( $result ) ; printf ( "Name: %s\n" , $fieldinfo -> name ) ; printf ( "Table: %s\n" , $fieldinfo -> table ) ; printf ( "max. Len: %d\n" , $fieldinfo -> max_length ) ; mysqli_free_result ( $result ) ; } mysqli_close ( $con ) ; ?>