| 
 | mysqli_result::field_seekmysqli_field_seekSet result pointer to a specified field offset DescriptionObject oriented style 
   bool mysqli_result::field_seek
    ( int  $fieldnr)Procedural style 
   bool mysqli_field_seek
    ( mysqli_result  $result, int$fieldnr)Sets the field cursor to the given offset. The next call to mysqli_fetch_field will retrieve the field definition of the column associated with that offset. 
 Parameters
 
 Return Values
   Returns  ExamplesExample #1 Object oriented style 
<?phpExample #2 Procedural style 
<?phpThe above examples will output: Name: SurfaceArea Table: Country max. Len: 10 Flags: 32769 Type: 4 See Also
 
 |