Please send questions to st10@humboldt.edu .
<html>

<!-- another_form2.html
     
     adapted from example from Ann Burroughs
     adapted by: Sharon Tuttle
     last modified: 11-07-06
-->

<head>
    <title> another_form2 </title>
</head>

<body>
    <h2> another_form2 </h2>    

    <form method="post"
          action=
              "http://redwood.humboldt.edu/~st10/form_echo.php">
        <table>
        <tr>
            <td> Enter your last name: </td>
            <td> <input type="text" name="lastname" size="15" maxlength="15"> </td>
        </tr>

        <tr>
            <td> Enter your age: </td>
            <td align="right"> 
                 <input type="text" name="age" size="3" maxlength="2"> </td>
        </tr>

        <tr>
            <td> Shoe size: </td>
            <td align="right"> 
                <input type="text" name="shoesize" size="3" maxlength="5"> </td>
        </tr>

        <tr>
            <td> Quantity: </td>
            <td align="right"> 
                 <input type="text" name="quantity" size="5" 
                        maxlength="5" value="0"> </td>
        <tr>

        </table>

        <input type="submit" value="submit">
        <input type="reset">
    </form>

</body>
</head>