-
Notifications
You must be signed in to change notification settings - Fork 0
/
camps disp.php
65 lines (56 loc) · 1.47 KB
/
camps disp.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
<?php
$mysql_id=mysqli_connect("localhost","root","","bloodbank_db");
$query="SELECT * FROM `CAMPS`; ";
$res=mysqli_query($mysql_id,$query);
if($res->num_rows>0)
{
?>
<html>
<style>
body {
background-image: url('images/6.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
<link rel="stylesheet" href="common.css">
<div class="nav">
<div class="topnav">
<a class="active" href="welcome.html">Home</a>
<a href="contact.html">Contact</a>
</div>
</div>
<title><head>Fetch from database</head></title>
<body>
<table align ="center" border="1px" style ="width:600px; line-height:30px;color:yellow;">
<tr>
<th colspan = "4"><h2>INVENTORY</h2></th>
</tr>
<tr>
<th>CAMP ID</th>
<th>EMPLOYEE ID</th>
<th>NAME OF THE CAMP</th>
<th>LOCATION(area)</th>
</tr>
<?php
while($rows=mysqli_fetch_assoc($res))
{
?>
<tr>
<td><?php echo $rows['ID']; ?></td>
<td><?php echo $rows['EMPLOYEE_ID']; ?></td>
<td><?php echo $rows['NAME']; ?></td>
<td><?php echo $rows['LOCATION']; ?></td>
</tr>
<?php
}
?>
</table>
</body>
</html>
<?php
}
else
echo "Empty set";
?>