<html>
<body>
<form action = "process_shirt_order.php" method="POST">
<p>
Enter Customer Name <input type="text" name="name" value="your name="30" />
</p>
<p> Shirt Size
<select name ="size">
<option value="small"> small </option>
// add 2 more options for medium and large
</select>
</p>
<p> Gender
<input type="radio" name="gender" value="girl" /> girl
<input type="radio" name="gender" value="boy" /> boy
</p>
</body>
</html>