Posted by John Nichel on 11/26/05 03:45
Matt Monaco wrote:
> I apologize, but I've never been able to access $_POST and $_GET in any
> context whatsoever without first turning on the register globals.
If you have a form like this one one page...
<form action="page2.php" method="post">
<input type="hidden" name="foo" value="bar" />
<input type="submit" />
</form>
And this on page2.php...
<?php
echo ( $_POST['foo'] );
?>
And the output on page2.php is not 'bar' when you submit the form,
something is very wrong with your install.
--
By-Tor.com
....it's all about the Rush
http://www.by-tor.com
[Back to original message]
|