-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
49 lines (41 loc) · 1.04 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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Startsida</title>
<!-- Include basic libraries -->
<?php include("modules/bootstrap_css.php"); ?>
<?php include("header.php"); ?>
<link rel = "stylesheet" href = "/modules/categories.css" >
</head>
<body>
<div id="wrapper" class="row">
<div id = "categories" class = "col-sm" style = "max-width: 250px;">
<?php include("modules/categories.php"); ?>
</div>
<div id="main" class="container">
<h1>Välkommen till ELSHOPPEN</h1>
<div id = "items" class = "col-xl">
<div class="row">
<?php
include("modules/mysql.php");
$db = new MySQL();
$sql = "SELECT id, name, price, image_ref FROM PRODUCTS WHERE removed='0';";
$items = $db->fetchAll($sql);
foreach ($items as $item) {
include("modules/item_card.php");
}
?>
</div>
</div>
</div>
</div>
<?php include("footer.php"); ?>
<!-- Include jQuery, popper and bootstrap -->
<?php include("modules/bootstrap_js.php"); ?>
<!-- fix footer position -->
<script src="/footer.js"></script>
</body>
</html>