Hello,
I have been working with PHP 5.0 and my "register_globals" has always been Off since PHP 4.1
Today I upgraded to PHP 5.2 and now neither of my include "config.php" work.
Neither of the variables defined in include files are even included. Anyone knows what has been changed and what can I do?
This is what I normally use
include("config.php");
mysql_connect($host,$user,$password);
@mysql_select_db("$db") or die("Unable to open database");
I echoed those connection variables and all are empty.
Thank you,
Mac