<body>
<h2>QUERY_STRING/METHOD=GET vs. STDIN/METHOD=POST INPUT</h2>
<hr>
There are two methods of passing information through a form: Method=Get & Method=Post<br>
This page will show the difference between the two.
<p>
<p>
<b>The METHOD=GET Form:</b>
<p>
<form method="get" action="get.cgi">
Enter your name here: <input type="text" name="name" size=12><p>
Type in your age here: <input type="text" name="age" size=4><p>
<input type="submit" value="Submit GET Form">
<input type="reset" value="Clear GET Form">
</form>
<hr>
<b>The METHOD=POST Form:</b>
<p>
<form method="post" action="post.cgi">
Enter your name here: <input type="text" name="name" size=12><p>
Type in your age here: <input type="text" name="age" size=4><p>
<input type="submit" value="Submit POST Form">
<input type="reset" value="Clear POST Form">
</form>
<hr>
<A HREF="http://ugweb.cs.ualberta.ca/~gerald/validate/">
<IMG SRC="valid_html.gif"
ALT="HTML Checked!"></A>
</body>
</html>