action attribute of an HTML form, such that the method is POST, but the action includes GET variables?<form name="edit_name" action=".?debug" method="post">
<input type="submit" value="Edit">
</form>debug and a POST value containing Edit.<form name="edit_name" action="this.php?debug" method="post">
<input type="submit" name="myfield" value="Edit">
</form>?foo=bar bit:<form name="edit_name" action="?debug" method="post">
If you’re using something proprietary as a server-side language, they may not have support for it, because it’s not really idiomatic. PHP and Perl certainly do, and I would be shocked if Ruby and Python didn’t. But that wasn’t your question :-) .
posted by Aidan Kehoe at 9:10 AM on October 26, 2006