-
Notifications
You must be signed in to change notification settings - Fork 0
/
blood storage disp.php
67 lines (57 loc) · 1.43 KB
/
blood storage 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
59
60
<?php
$mysql_id=mysqli_connect("localhost","root","","bloodbank_db");
//$mysql_id=include('conn.php')
$query="SELECT * FROM `BLOOD_STORAGE`; ";
$res=mysqli_query($mysql_id,$query);
if($res->num_rows>0)
{
?>
<html>
<style>
body {
background-image: url('images/5.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><br><br>
<title><head>Fetch from database</head></title>
<body>
<div class='tab'>
<table align ="center" border="2px" ; style ="width:600px; line-height:30px;background-color:yellow;
opacity:0.4;
align-items: center;">
<tr>
<th colspan = "4"><h2>INVENTORY</h2></th>
</tr>
<tr>
<th>BLOOD TYPE</th>
<th>QUANTITY (ML)</th>
</tr>
<?php
while($rows=mysqli_fetch_assoc($res))
{
?>
<tr>
<td><?php echo $rows['BLOOD_TYPE']; ?></td>
<td><?php echo $rows['BLOOD_QUANTITY']; ?></td>
</tr>
<?php
}
?>
</table>
</div>
</body>
</html>
<?php
}
else
echo "Empty set";
?>