I'm having an issue with Objects from a Parent class losing their data in PHP 4 across multiple scripts under the same session. For example I have 2 classes. A Database class which has my odbc_functions for connecting to a sql server database and an Employee class with general information. The employee class inherits from the Database class so each employee get their own Database object. The problem is when I go from one script where I create my objects to another script (tied together by a session) I lose my database connection object but I still have my Employee object. I've inluded a link to a basic version of the scripts... Can anyone tell me why I'm losing my Database object? Thanks
Parent Database Class
http://www.toranis.com/users/john/dev/php/DatabaseConnection.php
Child Employee Class
http://www.toranis.com/users/john/dev/php/Employee.php
Classes are included in this include file at the top of all the scripts
http://www.toranis.com/users/john/dev/php/include_files.php
Page One
http://www.toranis.com/users/john/dev/php/page_one.php
Page Two
http://www.toranis.com/users/john/dev/php/page_two.php