welcomewiki has just posted in the HTML Forum forum of Wiki Newforum under the title of HTML Forms and Input.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5784
Here is the message that has just been posted:
***************
_*Form with input fields and a submit button
This example demonstrates how to add a form to a page. The form contains two input fields and a submit button.
*_
<html>
<body>
<form name="input" action="html_form_action.asp" method="get">
Type your first name:
<input type="text" name="FirstName" value="Mickey" size="20">
<br>Type your last name:
<input type="text" name="LastName" value="Mouse" size="20">
<br>
<input type="submit" value="Submit">
</form>
<p>
If you click the "Submit" button, you will send your input to a new page called html_form_action.asp.
</p>
</body>
</html>
***************