HI 2 All.
This one got be me all worked out and well on my way to the loony bin! The following code worked out fine on a WinXP + Apache 1.3 + PHP ver 4.3.11 box, up until I changed my php.ini setting [register_globals] from Off to ON and back to Off with the necessary Apache restarts of course. After the second restart it just stopped working .. ;( <? include ("common.php"); include ("eMS/messaging_class.php"); include ("eDB/DB_class.php"); include ("eLG/logger_class.php"); $CM = new messaging; $LG = new Logger; $DB = new eDB; $DB->DBconnect($host,$user,$pass,$db_name); $sock = $DB; ?> This file named sock.php is included in almost every page in my project. After the second restart, php just ignores the include statements, therefore I'm short the common.php and rest classes; Case here being php's performance on an inclusion inside an inclusion situation (I think). Any heads up ? Thanks in advance.