-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax.php
30 lines (27 loc) · 912 Bytes
/
ajax.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
<?php
include 'config.php';
$orders = getSuccessOrders();
?>
<div class="panel">
<h2>Success orders</h2>
<?php if ($orders) {?>
<div class="order-list">
<?php foreach ($orders as $order) {?>
<?php
$tr = getTransaction($order['hash'])
?>
<div class="order-list-row">
<div><b>#<?= $order['id'] ?></b></div>
<?php if ($tr) {?>
<div>From: <b><?= $tr['address'] ?></b></div>
<?php }?>
<div>Price: <b><?= $order['price'] ?></b></div>
<div>Comment: <b><?= $order['hash'] ?></b></div>
<div>Date: <b><?= $order['created_at'] ?></b></div>
</div>
<?php }?>
</div>
<?php } else {?>
...
<?php }?>
</div>