I have html code for input boxes and a submit button, but I don't know how to get the

Inquisitive

New member
text on the page? I googled the html code to get 3 text boxes, and a submit button, but when I hit submit on the website, the text from the input boxes doesn't show up anywhere, how do I direct where the text goes? Thanks much I appreciate it. Here is the code I am using;

<html>
<body>

<form text="input" action="**I put my website address here**" method="get">

Type your first name:
<input type="text" text="FirstName" value="" size="20">
<br>
Type your last name:
<input type="text" text="LastName" value="" size="20">
<br>
Type your comment:
<input type="text" text="Comment": value="" size="40">
<br>
<input type="submit" value="Submit">

</form>

<p>
My text here.
</p>

</body>
</html>
 
Back
Top