Sabina Alejandr Schneider wrote:
know how to enable the posting of variables in the form of: test.php?var=1 there is something wrong with that because it doesn't function and in the version Apache 1.xIn recent versions of php register_globals is off by default in php.ini (it used to be on). The change in this default is documented in the release notes. You can turn it back on if you wish but the default changed to off for security reasons.
With it off, get the value of var with:
$var = $_GET['var'}
for "get" data, or
$var = $_POST['var'}
for "post" data.
HTH
Chris
--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php