-
Notifications
You must be signed in to change notification settings - Fork 0
/
pharm-customer-view.php
133 lines (100 loc) · 2.88 KB
/
pharm-customer-view.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
<?php
if(isset($_POST['search'])) {
$search=$_POST['valuetosearch'];
$query="SELECT c_id, c_fname,c_lname,c_phno FROM `customer`
WHERE CONCAT(c_id, c_fname,c_lname,c_phno) LIKE '%".$search."%';";
$search_result=filtertable($query);
}
else {
$query="SELECT c_id, c_fname,c_lname,c_phno FROM `customer`";
$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="nav2.css">
<link rel="stylesheet" type="text/css" href="table1.css">
<link rel="stylesheet" type="text/css" href="form2.css">
<title>
Customers
</title>
</head>
<body>
<div class="sidenav">
<h2 style="font-family:Arial; color:white; text-align:center;"> Pharmacy Management System </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();
$sql="SELECT E_FNAME from EMPLOYEE WHERE E_ID='$_SESSION[user]'";
$result=$conn->query($sql);
$row=$result->fetch_row();
$ename=$row[0];
?>
<div class="topnav">
<a href="logout1.php">Logout(signed in as <?php echo $ename; ?>)</a>
</div>
<center>
<div class="head">
<h2> CUSTOMER LIST</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-right:100px;">
<tr>
<th>Customer ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Phone Number</th>
</tr>
<?php
if ($search_result->num_rows > 0) {
while($row = $search_result->fetch_assoc()) {
echo "<tr>";
echo "<td>" . $row["c_id"]. "</td>";
echo "<td>" . $row["c_fname"] . "</td>";
echo "<td>" . $row["c_lname"]. "</td>";
echo "<td>" . $row["c_phno"]. "</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>