From: Jason S. G. <ja...@mu...> - 2002-04-30 15:34:53
|
Could be a newer version of PHP or a new configuration setting. If register_globals is set to On in your php.ini, then for the url page.php?variable=value You can automatically reference $variable Otherwise, with the newer php setups, you need $_GET["variable"] or $_POST["variable"] to access it. - jason scott gessner ja...@mu... |