| 
 | mysqli_result::fetch_field_directmysqli_fetch_field_directFetch meta-data for a single field DescriptionObject oriented style 
   object mysqli_result::fetch_field_direct
    ( int  $fieldnr)Procedural style 
   object mysqli_fetch_field_direct
    ( mysqli_result  $result, int$fieldnr)Returns an object which contains field definition information from the specified result set. Parameters
 
 Return Values
   Returns an object which contains field definition information or  
 
 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
 
 |