18 lines
371 B
PHP
18 lines
371 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Lab 3 Submit</title>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
$fname = strip_tags($_POST['fname']);
|
|
$lname = strip_tags($_POST['lname']);
|
|
$city = strip_tags($_POST['city']);
|
|
$province = strip_tags($_POST['province']);
|
|
echo "<p>$fname $lname is from the city of $city, $province</p>";
|
|
?>
|
|
</body>
|
|
|
|
</html>
|