-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddisplay.php
107 lines (78 loc) · 2.28 KB
/
ddisplay.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
103
104
105
106
107
<?php
include 'Ddbcon.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>drug</title>
<link rel="stylesheet" href="drug1.css">
</head>
<body>
<!-- Head Part -->
<header class="header">
<div id="logo">
<h4>HealthDoc<br>Pharmacy</h4>
</div>
<nav class="navbar">
<a href="pharinterface.php" class="highlight">Home</a>
<a href="odisplay.php">ORDERS</a>
<a href="corder.php">CONFIRM ORDERS</a>
<a href="ddisplay.php">DRUGS</a>
</nav>
<nav class="navbar">
<a href="#" class="highlight">LOG OUT</a>
</nav>
</header> <!-- header end -->
<br>
<br>
<br>
<br>
<br>
<div class="container">
<button class="my-5"><a href="Drugs.php" class="text-light"> Add drugs</a></button>
<br>
<br>
<table class="tablea">
<thead>
<tr>
<th style="width:5%;">did</th>
<th style="width:5%;">dname</th>
<th style="width:6%;">dbrand</th>
<th style="width:5%;">quantity</th>
<th style="width:5%;">price</th>
<th style="width:5%;">Operation</th>
</tr>
</thead>
<tbody>
<?php
$sql="Select * from `medicine`";
$result=mysqli_query($con,$sql);
if($result){
while($row=mysqli_fetch_assoc($result)){
$did=$row['did'];
$dname=$row['dname'];
$dbrand=$row['dbrand'];
$quantity=$row['quantity'];
$price=$row['price'];
echo'<tr>
<td scope="row">'.$did.'</td>
<td>'.$dname.'</td>
<td>'.$dbrand.'</td>
<td>'.$quantity.'</td>
<td>'.$price.'</td>
<td>
<button class="btnbtn-primary"><a href="dupdate.php?updateid='.$did.'"class="text-light">update</a></button>
<button class="btbtn-danger"><a href="ddelete.php?deleteid='.$did.'"class="text-light">delete</a></button>
</td>
</tr>';
}
}
?>
</tbody>
</table>
</div>
</body>
</html>