FAQ: I don't see parameters posted to my script, what's wrong ?
Quote: |
I have a form like below
<form action="myscript.php" method="post">
<input type="hidden" name="submitted" value="true" />
<input type="submit" name="post" value=" POST " />
</form>
and whenever I debug this script in phped IDE I see $submitted undefined while outside of the IDE everything works fine |
It is the same problem as described
here
PhpED IDE comes with php-4.3.x and register_globals is
OFF by default.
See
http://www.php.net/register_globals for further details on why this setting is turned OFF and should be kept OFF.