The source code of reportFormData.php :
Report the data from a form with two fields
Displaying form data";
$nameField = $_GET['NameField'];
$addressField = $_GET['AddrField'];
echo "Name field is: $nameField
\n";
echo "Address field is: $addressField \n"
?>