| mysqli_driver::$report_modemysqli_reportEnables or disables internal report functions DescriptionObject oriented style 
   int$mysqli_driver->report_mode
  ; Procedural style 
   bool mysqli_report
    ( int  $flags)A function helpful in improving queries during code development and testing. Depending on the flags, it reports errors from mysqli function calls or queries that don't use an index (or use a bad index). Parameters
 
 Return Values
   Returns  Changelog
 
 ExamplesExample #1 Object oriented style 
<?phpExample #2 Procedural style 
<?phpSee Also
 
 |