-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloseComplain.php
More file actions
73 lines (57 loc) · 2.66 KB
/
closeComplain.php
File metadata and controls
73 lines (57 loc) · 2.66 KB
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
<?php
$cid = (int)$_GET['compId'];
$sql = "SELECT * FROM tbl_complains
WHERE cid = $cid";
$result = dbQuery($sql);
while($row = dbFetchAssoc($result)) {
extract($row);
?>
<div style="width: 40%;margin-left: auto;margin-right: auto">
<form action="process.php?action=closeComplain" method="post" style="box-shadow: 1px 2px 2px 3px rgba(0,0,0,0.3);animation-delay: 1s;animation-name: zoomIn;" data-wow-delay="1s" class="wow zoomIn animated animated">
<div align="center"><h2 style="color: #34ad00"><b>:: Resolve Complaints ::</b><hr style="width: 70%"></h2></div>
<div class="errorMessage" align="center"></div>
<input type="hidden" name="compId" value="<?php echo $cid; ?>"/>
<div align="left" style="margin-left: 10px">
<label for="content"><b>Complainer Name:</b> </label>
<font><?php echo ucwords($cust_name); ?></font>
</div>
<hr style="border: none;">
<div>
<label for="content" style="margin-left: 10px"><b>Complaint Title :</b> </label>
<font><?php echo $comp_title; ?></font>
</div>
<hr style="border: none;">
<div >
<label for="compDesc" style="margin-left: 10px"><b>Complaint Desc  :</b></label>
<textarea name="compDesc" cols="30" rows="4" id="compDesc" readonly="readonly"><?php echo $comp_desc; ?></textarea>
</div>
<hr style="border: none;">
<div>
<label for="content" style="margin-left: 10px"><b>Status :</b></label>
<font style="color: #00fa00"><?php echo ucwords($status); ?></font>
</div>
<hr style="border: none;">
<div>
<label style="margin-left: 10px"><b>Date Of Creation :</b></label>
<?php echo $create_date; ?>
</div>
<hr style="border: none;">
<div>
<label style="margin-left: 10px"><b>Assignee Name :</b></label>
<font color="#0033FF"><?php echo $eng_name; ?></font>
</div>
<hr style="border: none;">
<div>
<label style="margin-left: 10px"><b>Comment :</b></label>
<textarea name="empComment" cols="30" rows="4" id="empComment" ><?php echo $eng_comment; ?></textarea>
</div>
<br/>
<div align="center">
<input name="btnLogin" type="submit" id="btnLogin" value=" Resolve Complain " style="color:whitesmoke;font-weight:bold;padding:10px;font-size:14px;background: #34ad00">
</div>
<br>
</form>
</div>
<?php
}//while
?>