-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsort.php
78 lines (66 loc) · 3.07 KB
/
sort.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
<?php
session_start();
include('adminwrk.php');
$sot = $_POST['by'];
$id = $_SESSION['userdata']['user_id'];
?>
<h3 class="text-center">All Rides</h3>
<table id='tbl' class="container-fluid col-lg-10 mr-lg-2 table table-responsive table-hover table-bordered table-striped">
<thead>
<th>Ride id</th>
<th onclick="sortTable(1,tbl)">Ride Date ⇩</th>
<th>Pickup Point</th>
<th>Drop Point</th>
<th>Cab Type</th>
<th onclick="sortTablen(5,tbl)">Distance ⇩</th>
<th>Luggage</th>
<th onclick="sortTablen(7,tbl)">Ride Fare ⇩</th>
<th>Status</th>
<th>User id</th>
<th>Cancel</th>
<th>Approve</th>
<th>Invoice</th>
<th>Delete</th>
</thead>
<tbody id='tblc'>
<?php
$adm = new adminwrk();
$admc = new dbcon();
$show = $adm->sort($sot,$id,$admc->conn);
foreach($show as $key=>$val)
{
echo "<tr><td>".$val['ride_id']."</td><td>".$val['ride_date']."</td><td>".$val['from_distance']."</td><td>".$val['to_distance']."</td><td>".$val['cab_type']."</td><td>".$val['total_distance']." Km</td><td>".$val['luggage']." Kg</td><td>".$val['total_fare']."</td><td>";
if($val['status']==1)
{
echo "Pending</td>";
}
if($val['status']==0)
{
echo "Canceled</td>";
}
if($val['status']==2)
{
echo "Completed</td>";
}
echo "<td>".$val['customer_user_id']."</td>";
if($val['status']==1)
{
echo "<td><a class='btn btn-warning' href='allrides.php?action=blk&id=".$val['ride_id']."'>Cancel</a></td>";
echo "<td><a class='btn btn-success' href='allrides.php?action=app&id=".$val['ride_id']."'>Approve</a></td>";
}
else{
echo "<td><a class='btn btn-warning disabled' >Cancel</a></td>";
echo "<td><a class='btn btn-success disabled' >Approve</a></td>";
}
if($val['status']==2)
{
echo "<td><a class='btn btn-info' href='invoice.php?id=".$val['ride_id']."'>Invoice</a></td>";
}
else{
echo "<td><a class='btn btn-info disabled'>Invoice</a></td>";
}
echo "<td><a class='btn btn-danger' href='allrides.php?action=no&id=".$val['ride_id']."'>Delete</a></td></tr>";
}
echo '</tbody>
</table>';
?>