-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo.php
49 lines (49 loc) · 1.46 KB
/
repo.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
<?php
$id = $_GET['id'];
?>
<h3>Report <?php echo $id;?> - Admin View</h3>
<form action="processLeave.php?action=addUser" method="post" name="frmListUser" id="frmListUser" style="animation-delay: 1s;animation-name: zoomIn;" data-wow-delay="1s" class="wow zoomIn animated animated">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="text">
<tr align="center" id="listTableHeader" bgcolor="#f5f5f5">
<td width="583">Complain Title</td>
<td width="303">Eng Name </td>
<td width="260">Customer Name </td>
<td width="150">Status</td>
</tr>
<?php
$sql = "SELECT *
FROM tbl_complains
WHERE status = '$id'
AND eng_name != ''
ORDER BY create_date DESC
LIMIT 0,20";
$result = dbQuery($sql);
$i=0;
while($row = dbFetchAssoc($result)) {
extract($row);
if ($i%2) {
$class = 'row1';
} else {
$class = 'row2';
}
$i += 1;
?>
<tr class="<?php echo $class; ?>" style="height:25px;background: #ffffcc">
<td align="center"> <?php echo $comp_title; ?></td>
<td width="303" align="center"><?php echo ucwords($eng_name); ?></td>
<td width="260" align="center"><?php echo ucwords($cust_name); ?></td>
<td width="150" align="center"><?php echo ucwords($status); ?></td>
</tr>
<?php
} // end while
?>
<tr>
<td colspan="5"> </td>
</tr>
<tr>
<td colspan="5" align="right"> </td>
</tr>
</table>
<p> </p>
</form>
<p> </p>