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

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

<head>
    <title> .php responding to an HTML form </title>
</head>

<body>
    <h2> .php responding to an HTML form </h2>    

    Welcome <?php 
                echo $_POST["lastname"];
            ?>.

    You are <?php
                echo $_POST["age"];
            ?> years old!

</body>
</head>