-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dashboard.php
47 lines (39 loc) · 1.78 KB
/
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
<?php
$con = mysqli_connect("localhost", "root", "", "factory");
session_start();
?>
<html>
<head>
<title>User's Dashboard</title>
</head>
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
<style>
body {background-color: mediumspringgreen;}
h1 {
font-family: 'Quicksand', sans-serif;
color:red;
}
h2 {
font-family: 'arial', sans-serif;
width: 100%;
color:crimson;
}
</style>
<body>
<div id = 'd1'>
<h1>Welcome Your given data as follows</h1>
<h2>First name:<?php echo($_SESSION['factory']['first_name']." "); ?></h2>
<h2>Mid name:<?php echo($_SESSION['factory']['mid_name']." "); ?></h2>
<h2>Last name:<?php echo($_SESSION['factory']['last_name']." "); ?></h2>
<h2>Father name:<?php echo($_SESSION['factory']['father_name']." "); ?></h2>
<h2>Email:<?php echo($_SESSION['factory']['email']." "); ?></h2>
<h2>Gender:<?php echo($_SESSION['factory']['gender']." "); ?></h2>
<h2>Marital sattus:<?php echo($_SESSION['factory']['marital_status']." "); ?></h2>
<h2>Pan no:<?php echo($_SESSION['factory']['pan_no']." "); ?></h2>
<h2>Aadhar no::<?php echo($_SESSION['factory']['aadhar_no']." "); ?></h2>
<h2>Address:<?php echo($_SESSION['factory']['address']." "); ?></h2>
<h2>Date of Birth:<?php echo($_SESSION['factory']['dob']." "); ?></h2>
<h2>Join Date:<?php echo($_SESSION['factory']['join_date']." "); ?></h2>
</div>
</body>
</html>