<HTML>
<HEAD>
<TITLE>Your Form Inputs</TITLE>
</HEAD>
<BODY>
<?php

# Obtain the form inputs from the enviroment variable array, $_POST

$forminputs $_POST;

# Output the POST Environment Variables

print  "<H1>Hello! Here are your form inputs:</H1>\n\n";

print 
"<table>\n";
print 
"<tr><th scope = 'col'>Name</th> <th scope = 'col'>Value</th></tr>\n";

foreach (
$forminputs As $PostKey => $PostValue) {
        echo 
"<tr><td> $PostKey </td><td> $PostValue</td></tr>\n";

}

print 
"</table>\n";

?>        
</BODY>
</HTML>