-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (64 loc) · 1.87 KB
/
index.php
File metadata and controls
75 lines (64 loc) · 1.87 KB
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
65
66
67
68
69
70
71
72
73
74
75
<style type="text/css">
.share{
position: fixed;
height: 45px;
width: 42px;
left: 1px;
bottom: 300px;
z-index: 9999;
}
</style>
<?php
session_start();
include 'koneksi.php';
?>
<?php
$datakategori=array();
$ambil= $koneksi->query("SELECT * FROM kategori");
while($tiap=$ambil->fetch_assoc())
{
$datakategori[]=$tiap;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Bose Koi</title>
<link rel="stylesheet" type="text/css" href="admin/assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section class="konten">
<?php include 'menu.php'; ?><br><br><br>
<script>
var a2a_config = a2a_config || {};
a2a_config.onclick = 1;
</script>
<script async src="https://static.addtoany.com/menu/page.js"></script>
</div>
<?php include 'buttonup.php'; ?>
<div class="container"><br>
<?php include 'slider.php'; ?><br>
<form action="pencarian.php" method="get" class="navbar-form navbar-right">
<input type="text" class="form-control" name="keyword" placeholder="Cari Produk">
<button class="btn btn-primary"><i class="fas fa-search"></i></button>
</form>
<form method="get" class="navbar-form navbar-right">
<select class="form-control" name="kategori" onchange="document.location.href= this.options[this.selectedIndex].value;">
<option value="">Pilih Kategori</option>
<?php foreach ($datakategori as $key => $value): ?>
<option value="kategori.php?id=<?php echo $value["id_kategori"] ?>" value="<?php echo $value["id_kategori"] ?>" ><?php echo $value["nama_kategori"] ?> </option>
<?php endforeach ?>
</select>
</form>
<?php
if (empty($_SESSION['keranjang']) OR !isset($_SESSION["keranjang"])):?>
<?php else: ?>
<?php include 'modal.php'; ?><br>
<?php endif ?>
<?php include 'produk.php'; ?><br>
</div>
<?php include 'footer.php'; ?>
</section>
</body>
</html>