<HTML>
<HEAD>
<TITLE>Your Form Inputs</TITLE>
</HEAD>
<BODY>
<?php
# Obtain the form inputs from the enviroment variable array, $_GET
$forminputs = $_GET;
# Output the GET 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 $GetKey => $GetValue) {
echo "<tr><td> $GetKey </td><td> $GetValue </td></tr>\n";
}
print "</table>\n";
?>
</BODY>
</HTML>