-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform2.php
69 lines (59 loc) · 2.46 KB
/
form2.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="form2dis.css">
<title>Details</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-2 col-md-2"></div>
<div class="col-sm-8 col-md-8 rounded padded">
<div class="row text-center">
<div class="col-sm-12 col-md-12">
<h3 class="grey">Application Form Data</h3>
<hr>
</div>
</div>
<div>
<?php
$postname = $_GET["postname"];
$dept = $_GET["dept"];
$campus = $_GET["campus"];
$fullname = $_GET["fullname"];
$fathername = $_GET["fathername"];
$cnic = $_GET["cnic"];
$dob = $_GET["dob"];
$email = $_GET["email"];
$gender = $_GET["gender"];
$postaladd = $_GET["postaladd"];
$city = $_GET["city"];
$officenum = $_GET["officenum"];
$resnum = $_GET["resnum"];
$mobnum = $_GET["mobnum"];
echo "<p>Post Name: $postname</p><br>";
echo "<p>Department: $dept</p><br>";
echo "<p>Campus: $campus</p><br>";
echo "<p>Full Name: $fullname</p><br>";
echo "<p>Father Name: $fathername</p><br>";
echo "<p>CNIC: $cnic</p><br>";
echo "<p>Date of Birth: $dob</p><br>";
echo "<p>Email: $email</p><br>";
echo "<p>Gender: $gender</p><br>";
echo "<p>Postal Address: $postaladd</p><br>";
echo "<p>City: $city</p><br>";
echo "<p>Office Number: $officenum</p><br>";
echo "<p>Residence Number: $resnum</p><br>";
echo "<p>Mobile Number: $mobnum</p><br>";
?>
</div>
</div>
<div class="col-sm-2 col-md-2"></div>
</div>
</div>
</body>
</html>