Comments - Installation Issues with PHP5

12 years, 2 months ago Daniel Black

perhaps with option 2:

$err_level = error_reporting(E_ALL ^ E_WARNING);
$conn = mysql_connect('params');
error_reporting($err_level)

Would be less intrusive and still allow real errors to be reported.

 
8 years, 1 month ago Janusz Cieśla

The simpliest way: @mysql_connect(...)

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.