-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
55 lines (54 loc) · 966 Bytes
/
dashboard.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
<?php
$fname = $_REQUEST['fnm'];
$lname = $_REQUEST['lnm'];
$class = $_REQUEST['class'];
$division = $_REQUEST['div'];
$city = $_REQUEST['city'];
$address = $_REQUEST['add'];
$mobno = $_REQUEST['mno'];
$pinc = $_REQUEST['pin'];
$st = $_REQUEST['state'];
$country = $_REQUEST['country'];
echo"<table>
<tr>
<td>First Name</td>
<td>$fname</td>
</tr>
<tr>
<td>Last Name</td>
<td>$fname</td>
</tr>
<tr>
<td>Class</td>
<td>$class</td>
</tr>
<tr>
<td>Division</td>
<td>$division</td>
</tr>
<tr>
<td>City</td>
<td>$city</td>
</tr>
<tr>
<td>Address</td>
<td>$address</td>
</tr>
<tr>
<td>Mobile no</td>
<td>$mobno</td>
</tr>
<tr>
<td>Pincode</td>
<td>$pinc</td>
</tr>
<tr>
<td>State</td>
<td>$st</td>
</tr>
<tr>
<td>Country</td>
<td>$country</td>
</tr>
</table>";
?>