First Name
Last Name

In PHP, we can loop through the form collection...

Posted variables:

 

SOURCE CODE:
<? print "<h1>Posted variables: </h1>"; reset ($_POST); while(list($key, $val) = each ($_POST)) print $key . " = " . $val . "<br>"; ?>