Using Windows 2000 and PHP 4
I have a page with the following structure
index.php
-- session_start()
-- include/application.inc
---- define vars here
-- include/buildFramework.inc
---- function to build HTML uses session vars
The session vars are scoped and accessible in index.php but they are not available in buildFramework.inc
Is this is general issue in PHP or is there some other way to code this that I should be aware of?
TIA