[snip]
Forgive me if you've already addressed this, I'm trying to post some
variable to a php sript and they just arn't registering if i use the
code
below it get's the variable and it's contents

 <?

 echo "Values submitted via POST method:<br>";
 reset ($HTTP_POST_VARS);
 while (list ($key, $val) = each ($HTTP_POST_VARS)) {
    echo "$key => $val<br>";
 }

 ?>

but if I call the variable directly

<? echo $renaldo; ?> it prints nothing, should I go ahead and take
apache
2.* off my box or if the fix easy.
[/snip]

<? echo $HTTP_POST_VARS['renaldo']; ?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to