"Shawn McKenzie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm having problems using global vars. I have read the docs and all of the > notes but it's not helping. Simplified example:
Simplified? So maybe what you're giving us doesn't include the problem? The scripts below work for me. > > /dir1/script2.php > <?php > $test = array ( 'a' => '1', 'b' => '2'); > ?> > > /dir1/script1.php > <?php > include("/dir1/script2.php"); > print_r($test); //works great > print_r($GLOBALS['test']); //does not work > ?> > When I've had similar problems it has almost always been because I'm trying to access the variable inside a function without declaring it as global. > This is a local include so the vars should be in the global scope right? > Any help please? > > TIA > -Shawn > > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php