Initial Commit

This commit is contained in:
2026-01-24 22:12:41 -05:00
parent 721b78010b
commit 09bda4fb1c
5 changed files with 44 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<!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>