Skip to content

postform.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
 <head>
  <title>HTML Form using POST</title>
 </head>
 <body bgcolor="lightblue"><font size="+1">
  <form action="postformprocess.php" method="POST">
   <p>
   Please enter your name: <br />
   <input type="text" size=50 name="your_name">
   <p>
   Please enter your phone: <br />
   <input type="text" size=50 name="your_phone">
   <p>
   Please enter your email address:<br />
   <input type="text" size=50 name="your_email_addr">
   <p>
   <input type=submit value="submit">
   <input type=reset value="clear">
  </form>
  <hr>
 </body>
</html>