-
Notifications
You must be signed in to change notification settings - Fork 0
/
VMDET.php
98 lines (88 loc) · 2 KB
/
VMDET.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
<html>
<head>
<title>Table with database</title>
<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: 10px;
padding-top:20px;
margin-bottom: 40px;
}
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>
</head>
<body>
<table>
<tr>
<th>StaffName</th>
<th>StaffPhone</th>
<th>StaffAddress</th>
<th>BranchCode</th>
</tr>
<?php
require_once "connect.php";
$sql = "SELECT * from stafftable where emptype='Manager'";
$result = $conn->query($sql);
while($row = $result->fetch_assoc())
{
echo "<tr><td>" . $row["staffname"]. "</td><td>" . $row["staffphone"] . "</td><td>". $row["staffadd"]. "</td><td>".$row["branchcode"]."</td></tr>";
}
?>
</table>
<br>
<input type="submit" value ="Return" onclick='location.href="admin.php"'>
</body>
</html>