Hi.
If I create "array_info.php":
---------
$myList = array ("John", "Mary");
----------
and "foo.php":
--------
require_once("array_info.php");
print_r($myList);
-------
it works ok.
But if I create "another_script.php":
---------
include("foo.php");
---------
myList data dissapear, and 'print_r' doesn't show any information. Any
similar experience?
If I create "array_info.php":
---------
$myList = array ("John", "Mary");
----------
and "foo.php":
--------
require_once("array_info.php");
print_r($myList);
-------
it works ok.
But if I create "another_script.php":
---------
include("foo.php");
---------
myList data dissapear, and 'print_r' doesn't show any information. Any
similar experience?