Difference between revisions of "CSC220 processForm1.php"
(One intermediate revision by the same user not shown) | |||
Line 11: | Line 11: | ||
<BODY> | <BODY> | ||
− | + | <?php | |
− | |||
− | |||
− | |||
//--- get the form parameters --- | //--- get the form parameters --- | ||
$name = $_REQUEST['name']; | $name = $_REQUEST['name']; | ||
− | $age | + | $age = $_REQUEST['age']; |
− | $occu = $_REQUEST['occupation']; | + | $occu = $_REQUEST['occupation']; |
print "name = $name<br>\n"; | print "name = $name<br>\n"; | ||
Line 25: | Line 22: | ||
print "occupation = $occu<br>\n"; | print "occupation = $occu<br>\n"; | ||
− | ? | + | ?> |
<P> | <P> |
Latest revision as of 09:04, 22 September 2010
--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>