-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlapjual.php
More file actions
31 lines (26 loc) · 938 Bytes
/
Copy pathlapjual.php
File metadata and controls
31 lines (26 loc) · 938 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
<?php
require_once 'includes/header.php';
require 'functions.php';
//$sql = "SELECT order_id, order_date, client_name, client_contact, payment_status FROM orders WHERE payment_status = 1";
?>
<main class="bd-masthead text-center" id="content"><br/>
<h1>PROFIT</h1>
<p class="lead">Profit Income Report.</p>
<hr/>
</main> <div class="container text-center">
<a href="listjual.php">
<div class="col-md-6 bg-info">
<h2 class="featurette-heading">SALES LIST</h2>
<img src="img/list.png">
<p><span class="text-muted">Sales List report.</span></p>
</div>
</a>
<a href="report.php">
<div class="col-md-6 bg-warning">
<h2 class="featurette-heading">PROFT INCOME</h2>
<img src="img/cash.png">
<p><span class="text-muted">Profit income report.</span></p>
</div>
</a>
</div>
<?php require_once 'includes/footer.php'; ?>