-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnotifications.php
129 lines (115 loc) · 3.9 KB
/
notifications.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
<?php
session_start();
if(!isset($_SESSION['login_user']))
{
echo "login first";
}
else
{
include_once("Admin.html");
require_once 'include/approve_deny.php';
$notify = new approve_deny();
?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Store and Purchase</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/datepicker.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-1.9.1.min.js"></script>
<style type="text/css">
</style>
</head>
<body>
<br><br><br><br>
<div style="margin-bottom:10px" class="row"></div>
<?php
$Viewer = $_SESSION['login_user'];
if(isset($_POST['seen']))
{
$ID = $_POST['ID'];
$User = $_POST['User'];
//$Viewer = $_POST['Viewer'];
$itemName = $_POST['itemName'];
$quantity = $_POST['quantity'];
$price= $_POST['price'];
//$url = $_POST['url'];
//$itemDetails = $_POST['itemDetails'];
$status="seen";
$notify_req=$notify->remove_notifications($ID);
if($notify_req!=true){
$message = "Could not remove the notifications";
echo "<script type='text/javascript'>alert('$message');</script>";
}
}
$Ndetails=$notify->fetch_notifications($Viewer);
if(count($Ndetails)==0){
$message = "No notifications";
echo "<script type='text/javascript'>alert('$message');</script>";
}
?>
<br><br><br><br>
<table table-layout: fixed;>
<tr>
<td width=2%></td>
<td width= 15%>
<b>ID</b>
</td>
<td width= 17%>
<b>User</b>
</td>
<td width= 19%>
<b>Item </b>
</td>
<td width= 17%>
<b>Price </b>
</td>
<td width= 15%>
<b>Quantity </b>
</td>
<td width= 14%>
<b>Status </b>
</td>
<td width= 17%>
<b>Clear</b>
</td>
</tr>
</table>
<?php
for($i=0;$i<count($Ndetails);$i++)
{
?>
<div >
<form action="" method="post" role="form">
<div class="row">
<table class="table">
<tr>
<td width=2%></td>
<td width=5%><input class="form-control" name="ID" type="text" value="<?php echo $Ndetails[$i]["ID"]; ?>" size="20" readonly/></td>
<td width=18%><input class="form-control" name="User" type="text" value="<?php echo $Ndetails[$i]["User"]; ?>" size="20" readonly/></td>
<td width=18%><input class="form-control" name="itemName" type="text" value="<?php echo $Ndetails[$i]["itemName"]; ?>" size="20" readonly/></td>
<td width=10%><input class="form-control" name="price" type="text" value="<?php echo $Ndetails[$i]["price"]; ?>" size="20" readonly/></td>
<td width=18%><input class="form-control" name="quantity" type="text" value="<?php echo $Ndetails[$i]["quantity"]; ?>" size="20" readonly/></td>
<td width=10%><input class="form-control" name="status" type="text" value="<?php echo $Ndetails[$i]["status"]; ?>" size="20" readonly/></td>
<td width=10%> <button style="width:45%" type="submit" name="seen" class="btn btn-success">Clear</button> </td>
</tr>
</div>
<!-- <div class="row">
<div class="col-md-offset-1">
</div>
</div> -->
</form>
</div>
<?php
}
?>
</table>
</body>
</html>
<?php
}
?>