-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowcomplaint.php
139 lines (95 loc) · 3.8 KB
/
showcomplaint.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
138
139
<?php
ob_start();
include 'css/style.css';
session_start();
include 'connection1.php';
include 'staff_header.php';
$s23 = $_SESSION['login'];
$boss= "veiwed";
$sql = "select * from complaint where cview <> '$boss' and dname='$s23' ";
$result = $conn->query($sql);
?>
<html>
<head>
<title>products </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<a href="distributorhome.php"><h3> <font color="#0000FF" > <span class="material-icons" >arrow_circle_left</span></font></h3></a>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">COMPLAINT RESPONSE</h4>
</div>
<div class="modal-body">
<form method="post">
<label for="comment">Comment:</label>
<textarea class="form-control" name="rothanam" rows="5" id="comment"></textarea>
</div>
<div class="modal-footer">
<button type="submit" name="rocklee" class="btn btn-success" >Send</button>
</form>
<?php
if(isset($_POST['rocklee'])){
$ons = $_POST['rothanam'];
$sql1= "update complaint set creply= '$ons' where id = '".$_GET['id']."' ";
$res = $conn->query($sql1);
if($res){
$horror = "veiwed";
$sql3= "update complaint set cview = '$horror' where id = '".$_GET['id']."'";
mysqli_query($conn,$sql3);
header("Location:showcomplaint.php");
}
}
?>
</div>
</div>
</div>
</div>
<center>
<div class="div-center">
<table class="table table-hover" id="list">
<tr>
<th>OrderNo </th>
<th>complaint </th>
<th>Date and time </th>
<th>Action </th>
</tr>
<tr >
<?php
if($result->num_rows > 0){
while($row=$result->fetch_assoc()){
?>
<td> <a href="viewordercomplaint.php?id=<?php echo $row['cstatus']?>" onClick="return "><?php echo $row['cstatus']; ?></td>
<td><?php echo $row['complaint']; ?></td>
<td><?php echo $row['cdate']; ?><br><?php echo $row['ctime']; ?></td>
<td>
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal"> <a href="showcomplaint.php?id=<?php echo $row['id']?>" onClick="return ">ADD</a>
</button>
</td>
</tr>
</div>
<?php
}
}
if(isset($_POST['delete'])){
$id = $_POST['delete'];
$sql2 = "delete from tbl_containment where id= '$id' ";
$result = $conn->query($sql2);
if($result){
header("Location:staff_view_containment.php");
echo 'Data Deleted';
}
}
?>
</table> </div>
</div>
</body>
</html>