-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
executable file
·50 lines (36 loc) · 983 Bytes
/
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
<?php
// include script for the database connection
include('server/cruds_read.php');
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link external CSS stylesheet (Bootstrap 3 from www.getbootstrap.com) -->
<link rel="stylesheet" href="css/bootstrap.css">
<title>My Products</title>
</head>
<body>
<div class="container">
<h1>My Store</h1>
<br/>
<header>
<ul class="nav nav-tabs">
<li class="active"><a href="index.php">Products</a></li>
<li><a href="customer/index.php">Customers</a></li>
<li><a href="transaction/index.php">Transactions</a></li>
</ul>
</header>
<br/>
<a href="create.php" class="btn btn-default btn-sm">+ Add Product</a>
<br/>
<br/>
<!-- list product items here -->
<?php
displayItems();
?>
</div>
</body>
</html>