Blake Schroeder wrote:
The form that is being submitted can only be a POST or a GET not both
example:
<form method="post" action="foo.php">
<input type="text" name="foo1">
<input type="submit">
</form>

How can you do both?


<form method="post" action="foo.php?id=1">
<input type="text" name="foo1">
<input type="submit">
</form>

Hope that answers your question ;-)

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



Reply via email to