Hi,
I have a function called init on my website in an external file called functions.php. Index.php loads that page and calls function init:
function init(){
error_reporting(0);
$time_start = microtime(true);
$con = mysql_connect("localhost","user123","password123");
mysql_select_db("db123");
}
How can I get all of these variables global(if possible) without having to use
global $time_start;
global $con;