-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpaymentonline.php
More file actions
35 lines (29 loc) · 939 Bytes
/
paymentonline.php
File metadata and controls
35 lines (29 loc) · 939 Bytes
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
<?php include 'inc/header.php';?>
<div class="main">
<div class="content">
<div class="content_top">
<div class="heading">
<h3>All Food Items</h3>
</div>
<div class="clear"></div>
</div>
<div class="section group">
<?php
$getFpd = $ct->getAllOrderProduct();
if ($getFpd) {
while ($result = $getFpd->fetch_assoc()) {
?>
<table class="tblone">
<tr>
<td><?php echo $result['productName']; ?></td>
<td><?php echo $result['quantity']; ?></td>
</tr>
<?php } } ?>
</table>
<br />
<form method="post" action="export.php">
<input type="submit" name="export" class="btn btn-success" value="Export" />
</form>
</div>
</div>
</div>