Try the "register_globals" variable in php.ini and read the PHP 4.2.x press release
regarding external variables.
http://www.php.net/release_4_2_1.php
--Jim
>>> "Salvador Gil" <[EMAIL PROTECTED]> 05/30/02 12:01 PM >>>
I'm trying to use $HTTP_POST_VARS but it have not value.
I found a configura
I'm trying to use $HTTP_POST_VARS but it have not value.
I found a configuration line in php.ini
track_vars = On
but it didn't function.
The code:
echo "Valores enviados con el método POST: $step";
reset ($HTTP_POST_VARS);
while (list ($clave, $val) = each ($HTTP_POST_VARS))
{ echo "$cla