2 $sortedKeys = array_keys($_POST);
7 if ( sizeof($_POST) == 0)
8 echo "There were no POSTed form values.";
10 echo "Form values are:<br>";
12 foreach ($sortedKeys as $value) {
13 echo "$value : $_POST[$value]";
18 if (window
.testRunner
)
19 testRunner
.notifyDone();