CSC220 processForm1.php

From dftwiki3
Revision as of 09:04, 22 September 2010 by Thiebaut (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

--D. Thiebaut 12:55, 22 September 2010 (UTC)


<HTML>

<HEAD>
<TITLE>CSC220 -- processform1.php</TITLE>
<meta http-equiv="Pragma" content="no-cache">
</HEAD>

<BODY>
<?php

//--- get the form parameters ---
$name = $_REQUEST['name'];
$age    = $_REQUEST['age'];
$occu   = $_REQUEST['occupation'];

print "name = $name<br>\n";
print "age = $age<br>\n";
print "occupation = $occu<br>\n";

?>

<P>
</BODY>
</HTML>