Monday, August 12, 2002, 4:57:36 AM, Petre wrote:
PA> to the default php.ini, and have checked it and register_global = On
PHP settings can be altered outside of php.ini (using Apache .htaccess files
for example) Add this line to page2.php to see the run-time setting:
echo " register_globals is : ".ini_get('register_globals');
Something might be wrong with your PHP install if it's a recent
version and $_POST isn't there.. Try print_r($_POST);
PA> echo " HTTP_POST_VARS :".$_HTTP_POST_VARS["test"]."<br>";
The deprecated POST array is $HTTP_POST_VARS (no preceding underscore).
Steve
--
[EMAIL PROTECTED] ** http://mrclay.org
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php