Newer
Older
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
<div class="subtitle-cont subtitle-history">
TRANSACTION HISTORY
</div>
<div class="body-container">
<div class='menu'>
<div class="menu-column"></div>
<div class="menu-column"></div>
<div id="user-his" class="menu-cell" onclick="tabActive('user');">MY PREVIOUS ORDERS</div>
<div id="driver-his" class="menu-cell" onclick="tabActive('driver');">DRIVER HISTORY</div>
</div>
</div>
<div id="history-container">
<ol class="history-list order-list">
<?php foreach($this->historyUser as $history): ?>
<li class="list-text-his">
<div class="history-pic-div">
<img class="profile-pic-his" src=<?php echo $this->image . $history[1]; ?> alt="">
</div>
<span class="hide">
<a href=<?php echo "/history/". $history[0] . "/update/" . $history[1] . "/" . rawurlencode($history[4]); ?>>HIDE</a>
</span>
<div class="his-text">
<div class="date-his"><?php echo htmlentities($history[4]); ?></div>
<div class="name-his"><b><?php echo $history[1]; ?></b></div>
<div><?php echo $history[5]; ?> - <?php echo $history[6]; ?></div>
<div>
You rated : ?<?php echo $history[2]; ?>
<div>
<div>
You commented:
<div class="comment">
<?php echo $history[3]; ?>
</div>
</div>
</div>
</li>
<?php endforeach; ?>
</ol>
<ol class="history-list driver-list">
<?php foreach($this->historyDriver as $history): ?>
<li class="list-text-his">
<div class="history-pic-div">
<img class="profile-pic-his" src=<?php echo $this->image . $history[0]; ?> alt="" />
</div>
<span class="hide">
<a href=<?php echo "/history/". $history[0] . "/update/" . $history[1] . "/" . rawurlencode($history[4]); ?>>HIDE</a>
</span>
<div class="his-text">
<div class="date-his"><?php echo $history[4]; ?></div>
<div><b><?php echo $history[0]; ?></b></div>
<div><?php echo $history[5]; ?> - <?php echo $history[6]; ?></div>
<div>
gave <span><?php echo $history[2]; ?></span> stars for this order
<div>
<div>
and left comment:
<div class="comment">
<?php echo $history[3]; ?>
</div>
</div>
</div>
</li>
<?php endforeach; ?>
</ol>
</div>
<script src=<?php echo $this->script; ?>></script>