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

<!-- form_echo.php
     
     by: Sharon Tuttle
     last modified: 11-07-06
-->

<head>
    <title> values from a form </title>
</head>

<body>
    <h2> values from a form </h2>    

    <h3>
    <table>
    <?php
        foreach ($_POST as $name => $value)
        {
            print "<tr> <td> " . $name . " </td>\n";
            print "     <td> " . $value . " </td> <tr>\n";
        }
    ?>
    </table>
    </h3>

</body>
</head>