<?php define('_MYSQL_HOST','localhost'); define('_MYSQL_PORT',8888); define('_MYSQL_DBNAME','dbtest'); define('_MYSQL_USER','root'); define('_MYSQL_PASSWORD','root'); // define('__DEBUG', false); define('__DEBUG', true); // ================================================================================ // Debug utilities // ================================================================================ if(__DEBUG) { error_reporting(E_ALL); ini_set("display_errors", E_ALL); } else { error_reporting(0); ini_set("display_errors", 0); } function myLog($msg) { if(__DEBUG) { echo $msg; } } function myDump($var) { if(__DEBUG) { var_dump($var); } } ?>