|
mysqli::$infomysqli_infoRetrieves information about the most recently executed query DescriptionObject-oriented style stringnull$mysqli->info;
Procedural style
stringnull mysqli_info(mysqli
$mysql )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
Procedural style
The above examples will output: Records: 150 Duplicates: 0 Warnings: 0 See Also
|