-
Notifications
You must be signed in to change notification settings - Fork 1
/
cashier.php
127 lines (114 loc) · 3.98 KB
/
cashier.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
<!doctype html>
<html>
<head>
<!-- App Title -->
<title>Grocery store</title>
<!-- App Description -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/animate.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/wow.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<style type="text/css">
body{
background-color: #FF6600;
padding: 0px;
margin: 0px;
}
table{border-radius: 25px;
background-color: rgb(51, 51, 255);}
th{border-radius: 25px;
background-color:rgb(102, 102, 255);
color: white; }
td{border-radius: 25px;
background-color:#CCFFFF; }
h1{font-size:24;font-family:Copperplate Gothic Light;color: #3333FF}
header{
width: 100%;
height: 90px;
z-index: 99;
background-color: #41c17d;
}
header .heading{
margin: 20px 100px 0 0;
}
</style>
</head>
<?php
session_start(); //starts the session
if($_SESSION['customers']){ //checks if user is logged in
}
else{
header("location:index.php"); // redirects if user is not logged in
}
$user = $_SESSION['customers']; //assigns user value
?>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="heading pull-left animated wow bounceInLeft">
<h1>Grocery Store</h1>
</div>
</div>
</header>
<!-- End Header Section -->
<div class="container">
<div class="row text-center">
<div class="col-sm-12 col-md-12 details animated wow bounceInLeft" data-wow-delay="0s" style="border-radius:25px;">
<h2 align="center">Your BILL</h2>
<p>Customer Name: <?php Print "$user"?></p>
<table border="1px" width="100%">
<tr>
<th>ProductId</th>
<th>Product name</th>
<th>Quantity</th>
<th>Price</th>
<th>Edit</th>
<th>Delete</th>
<th>Total price</th>
</tr>
<?php
mysql_connect("localhost", "root","") or die(mysql_error()); //Connect to server
mysql_select_db("dbms") or die("Cannot connect to database"); //connect to database
$query = mysql_query("Select * from consume");
$t="";
$w="";// SQL Query
while($row = mysql_fetch_array($query))
{ if($user==$row['username'])
{Print "<tr>";
Print '<td align="center">'. $row['pro_id'] . "</td>";
Print '<td align="center">'. $row['pro_name'] . "</td>";
Print '<td align="center">'. $row['quantity']. "</td>";
Print '<td align="center">'. $row['price']."</td>";
Print '<td align="center"><a href="edit.php?id='. $row['id'] .'">edit</a> </td>';
Print '<td align="center"><a href="#" onclick="myFunction('.$row['id'].')">delete</a> </td>';
Print "</tr>";
$t=($row['quantity'])*($row['price']);
$w=$w+$t;
Print '<td align="center">'. $t."</td>";
Print "</tr>";}}
Print "<tr>";
Print '<td align="center" colspan=4>'.'Total Bill'."</td>";
Print '<td align="center">'. $w."</td>";
Print "</tr>";
?>
</table>
<script>
function myFunction(id)
{
var r=confirm("Are you sure you want to delete this record?");
if (r==true)
{
window.location.assign("delete.php?id=" + id);
}
}
</script>
</div>
<a href="index.php"> <button style="font-size:24;font-family:Copperplate Gothic Light;color: #FF6600;position:fixed;bottom:0px;right:0px;">LOG-out</button></a
> </div>
</body>
</html>