-
Notifications
You must be signed in to change notification settings - Fork 0
/
MEMPmod.php
102 lines (97 loc) · 2.6 KB
/
MEMPmod.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
$sid=$_POST["sid"];
$sid0=$sid;
require_once "connect.php";
$sql="SELECT * from stafftable natural join branchtable where sid='$sid0'";
$result = $conn->query($sql);
while($row = $result->fetch_assoc())
{
$sid=$row["sid"];
$staffname=$row["staffname"];
$staffphone=$row["staffphone"];
$staffaddress=$row["staffadd"];
$branchcode=$row["branchcode"];
$branchname=$row["branchname"];
$emptype=$row["emptype"];
}
?>
<html>
<style>
body {
font-family:serif;
letter-spacing: 0.1em;
color:black;
font-size:30px;
background: #ff9966; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff5e62, #ff9966); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff5e62, #ff9966); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
table {
border-collapse: collapse;
width: 100%;
color:linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%) ;
font-family:times;
font-size: 25px;
text-align: center;
}
input[type="submit"]
{
background: :black;
background-color: black;
padding:10px;
font-size:25px;
margin:20px;
width:10%;
border:0px transparent;
border-radius:10px;
color:white;
}
th {
background-color: black;
color: white;
}
#container{
height:auto;
width:95%;
left: 55%;
top:16%;
background:transparent
border: 40px solid transparent;
border-radius: 10px;
text-align:center;
padding-bottom: 20px;
padding-top:20px;
margin-bottom: 80px;
}
input[type="text"],input[type="password"]
{
padding: 7px 10px;
font-size:40px;
margin:10px;
width:30%;
outline:0;
border:0px transparent;
border-radius: 10px;
}
input[type="submit"]:hover
{
opacity:0.8;
}
</style>
<body>
<div id="container">
<form action="MEMPmod2.php" method="post">
Staff ID:<input type="text" value= "<?php echo $sid;?>" name="sid"><br>
Staff Namer:<input type="text"value= "<?php echo $staffname;?>" name="staffname"><br>
Staff Phone:<input type="text" value= "<?php echo $staffphone;?>" name="staffphone"><br>
Staff Address:<input type="text"value= "<?php echo $staffaddress;?>" name="staffadd"><br>
Branch Code:<input type="text" value= "<?php echo $branchcode;?>" name="branchcode"><br>
Branch Name:<input type="text" value= "<?php echo $branchname;?>" name="branchname"><br>
Emp Type:<input type="text" value= "<?php echo $emptype;?>" name="emptype"><br>
<input type="hidden" value="<?php echo $sid0;?>" name="sid0">
<input type="submit" value="Submit" method="post">
</form>
</div>
<input type="submit" value ="Return" onclick='location.href="admin.php"'>
</body>
</html>