Please send questions to st10@humboldt.edu .

<html>
<head>
    <title> Some simple validation </title>
</head>

<body>

<form method="post"
      action="http://redwood.humboldt.edu/~st10/validate1.php">
    <table>
        <tr> <td> Enter your username: </td> 
             <td> <input type="text" name="username"> </td>
        </tr>

        <tr> <td> Select your favorite text editor: </td>
             <td> <select name="editor">
                      <option value="emacs"> emacs </option>
                      <option value="vi"> vi </option>
                      <option value="pico"> pico </option>
                      <option value="notepad"> notepad </option>
                  </select>
        </tr>

        <tr>
            <td> How many computers: </td>
            <td> <input type="text" name="comp_quant" value="1"> </td>
        </tr>
    </table>

    <input type="submit" value="submit">
</form>
</body>
</html>