Hey, So I've got this form that passes POST variables. However, they keep getting passed as get variables. Example:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="hidden" name="action" value="something"> <input type="submit" value=" Action "> </form> Get's sent to it as: url.php?action=something What's going on here? This is a new installation of PHP 4.3.1, Apache 1.3... -Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php