-
Notifications
You must be signed in to change notification settings - Fork 0
/
pharm-inventory.php
137 lines (104 loc) · 3.16 KB
/
pharm-inventory.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
include "config.php";
if(isset($_POST['search'])) {
$search=$_POST['valuetosearch'];
$search_result=mysqli_query($conn,"SET @p0='$search';")or die(mysqli_error($conn));
$search_result=mysqli_query($conn,"CALL `SEARCH_INVENTORY`(@p0);") or die(mysqli_error($conn));
}
else {
$query="SELECT med_id as medid, med_name as medname,med_qty as medqty,category as medcategory,med_price as medprice,location_rack as medlocation FROM meds";
$search_result=filtertable($query);
}
function filtertable($query)
{ $conn = mysqli_connect("localhost", "root", "", "pharmacy");
$filter_result=mysqli_query($conn,$query);
return $filter_result;
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="table1.css">
<link rel="stylesheet" type="text/css" href="nav2.css">
<link rel="stylesheet" type="text/css" href="form2.css">
<title>
Inventory
</title>
</head>
<body>
<div class="sidenav">
<h2 style="font-family:Arial; color:white; text-align:center;"> ONLINE PHARMACY</h2>
<a href="pharmmainpage.php">Dashboard</a>
<a href="pharm-inventory.php">View Inventory</a>
<a href="pharm-pos1.php">Add New Sale</a>
<button class="dropdown-btn">Customers
<i class="down"></i>
</button>
<div class="dropdown-container">
<a href="pharm-customer.php">Add New Customer</a>
<a href="pharm-customer-view.php">View Customers</a>
</div>
</div>
<?php
include "config.php";
session_start();
$sql1="SELECT E_FNAME from EMPLOYEE WHERE E_ID='$_SESSION[user]'";
$result1=$conn->query($sql1);
$row1=$result1->fetch_row();
$ename=$row1[0];
?>
<div class="topnav">
<a href="logout1.php">Logout(signed in as <?php echo $ename; ?>)</a>
</div>
<center>
<div class="head">
<h2> MEDICINE INVENTORY </h2>
</div>
<form method="post">
<input type="text" name="valuetosearch" placeholder="Enter any value to Search" style="width:400px; margin-left:250px;">
<input type="submit" name="search" value="Search">
<br><br>
</form>
</center>
<table align="right" id="table1" style="margin-top:20px; margin-right:100px;">
<tr>
<th>Medicine ID</th>
<th>Medicine Name</th>
<th>Quantity Available</th>
<th>Category</th>
<th>Price</th>
<th>Location in Store</th>
</tr>
<?php
if ($search_result->num_rows > 0) {
while($row = $search_result->fetch_assoc()) {
echo "<tr>";
echo "<td>" . $row["medid"]. "</td>";
echo "<td>" . $row["medname"] . "</td>";
echo "<td>" . $row["medqty"]. "</td>";
echo "<td>" . $row["medcategory"]. "</td>";
echo "<td>" . $row["medprice"] . "</td>";
echo "<td>" . $row["medlocation"]. "</td>";
echo "</tr>";
}
echo "</table>";
}
$conn->close();
?>
</body>
<script>
var dropdown = document.getElementsByClassName("dropdown-btn");
var i;
for (i = 0; i < dropdown.length; i++) {
dropdown[i].addEventListener("click", function() {
this.classList.toggle("active");
var dropdownContent = this.nextElementSibling;
if (dropdownContent.style.display === "block") {
dropdownContent.style.display = "none";
} else {
dropdownContent.style.display = "block";
}
});
}
</script>
</html>