Hi all How to declare and access global variables in PHP 4.2.4-Dev i have register_global=off in php.ini I want to set a variable on one page and access that from another page as global variable. Thanks
http://php3.de/manual/en/reserved.variables.php#reserved.variables.get
$GET Variables provided to the script via HTTP GET $POST Variables provided to the script via HTTP POST
print $_GET['varname']; // or print $_POST['anothervar'];