-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaketwisata.php
More file actions
37 lines (28 loc) · 939 Bytes
/
paketwisata.php
File metadata and controls
37 lines (28 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
36
37
<div class="box">
<div class="row">
<div class="col-lg-12">
<hr>
<h1 class="page-header"><center>PAKET WISATA</center> </h1>
<hr>
</div>
</div>
<div class="row">
<?php
include 'koneksi.php';
$sql = "SELECT * FROM paket ";
$query = mysqli_query($connect,$sql);
while($tmp = mysqli_fetch_array($query)){
?>
<div class="col-md-4 portfolio-item">
<a href="#">
<img img src="<?php echo $tmp['gambar']; ?>" height="200" width="350" alt="">
</a>
<h3>
<a href="index.php?pg=paket&&kategori=<?php echo $tmp['kategori']; ?>"><center><?php echo $tmp['kategori']; ?></center></a>
</h3>
</div>
<?php
}
?>
</div>
</div>