| 
 | mysqli::$infomysqli_infoRetrieves information about the most recently executed query DescriptionObject oriented style string$mysqli->info; Procedural style 
   string mysqli_info
    ( mysqli  $link)The mysqli_info function returns a string providing information about the last query executed. The nature of this string is provided below: 
 
 
 Parameters
 
 Return ValuesA character string representing additional information about the most recently executed query. ExamplesExample #1 $mysqli->info example Object oriented style 
<?phpProcedural style 
<?phpThe above examples will output: Records: 150 Duplicates: 0 Warnings: 0 See Also
 
 |