Source of: /ADI/more_sessions-withCookies/entry_form.html

<html>
<head>
  <title>entry_form</title>
</head>
<body>
<h1>Phonebook details</h1>
<h2>Fields having a "*" are mandatory</h2>
<form method="post" action="input_validation.php">
<table>
  <tr><td>First Name: *</td><td><input type="text" name="firstname" size=50></td></tr>
  <tr><td>Last Name: *</td><td><input type="text" name="lastname" size=50></td></tr>
  <tr><td>Phone: *</td><td><input type="text" name="phone" size=20></td></tr>
  <tr><td><input type="submit" value="Submit data"> </td></tr>
</table> 
</form>
</body>
</html>