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

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

<head>
    <title> HTML calling a .php with metohod post</title>
</head>

<body>
    <h2> HTML calling a .php with method post </h2>    

    <form method="post"
          action=
              "http://redwood.humboldt.edu/~st10/welcome_post.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> <input type="text" name="age" size="3" maxlength="2"> </td>
        </tr>
        </table>

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

</body>
</head>