-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
64 lines (61 loc) · 1.3 KB
/
index.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
<?php
$order_id = rand(0, 1000);
?>
<!DOCTYPE html>
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<title>Test Invoice</title>
</head>
<body>
<h1>Invoice Preview Page - <?php echo $order_id; ?></h1>
<table border="1" class="table">
<thead>
<th>S/N</th>
<th>Item</th>
<th>Qty</th>
<th>Unit Price</th>
<th>Total</th>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>HP Laptop</td>
<td>2</td>
<td>70,000</td>
<td>140,000</td>
</tr>
<tr>
<td>2.</td>
<td>Microsoft Mouse</td>
<td>3</td>
<td>5000</td>
<td>15,000</td>
</tr>
<tr>
<td>3.</td>
<td>HP Keyboard</td>
<td>2</td>
<td>2,500</td>
<td>5,000</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td><b>Total</b></td>
<td>160,000</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><a href="process.php?order_id=<?php echo $order_id; ?>"><button class="btn">Pay with InterSwitch</button></a></td>
</tr>
</tbody>
</table>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>
</html>