-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaket.detail.php
More file actions
94 lines (73 loc) · 2.22 KB
/
paket.detail.php
File metadata and controls
94 lines (73 loc) · 2.22 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
$getkategori = $_GET['kategori'];
include 'koneksi.php';
$query = "SELECT * FROM paket WHERE kategori='$getkategori'";
$sql = mysqli_query($connect,$query);
$data = mysqli_fetch_array($sql,MYSQLI_BOTH);
?>
<div class="row">
<div class="box">
<hr>
<h2 class="page-header"><center><?php echo $data['kategori']; ?></center> </h2>
<hr>
<div class="col-lg-10" style="margin-left:2%;">
<div class="row">
<div class="col-md-10">
<br><br>
<table class="table table-hover">
<tr>
<td width="200px">KATEGORI</td>
<td width="10px">:</td>
<td> <?php echo $data['kategori'];?> </td>
</tr>
<tr>
<td width="200px">DURASI</td>
<td width="10px">:</td>
<td> <?php echo $data['durasi'];?> </td>
</tr>
<tr>
<td width="200px">HARGA</td>
<td width="10px">:</td>
<td> <?php echo $data['harga'];?> </td>
</tr>
<tr>
<td width="200px">MASA BERLAKU</td>
<td width="10px">:</td>
<td> <?php echo $data['masa_berlaku'];?> </td>
</tr>
<tr>
<td width="200px">SISTEM PEMBAYARAN</td>
<td width="10px">:</td>
<td> <?php echo $data['sistem_pembayaran'];?> </td>
</tr>
</table>
</div>
</div>
<?php
if(isset($_SESSION['id'])){
?>
<div class="col-md-8">
<center><a href="?pg=pesanan&&paket=<?php echo $data['kategori'];?>" class="btn btn-primary">Reserved</a></center>
</div>
<?php
} ?>
<div class="col-md-8">
<h3><b>Jadwal Intenery</b> <i class="glyphicon glyphicon-list-alt"></i></h3>
<br>
<div class="panel panel-default">
<div class="panel-body" ><p> <?php echo $data['rincian'];?></p> </div>
</div>
<br>
<h5>Note :</h5>
<ul>
<li>Harga sewaktu – waktu masih dapat berubah</li>
<li>S = Snack, B = Breakfast, L = Lunch, D=Dinner</li>
<li>Pembayaran pertama cukup 25% dari harga dan sisanya H-5 Sebelum Keberangkatan</li>
<li>Pembayaran bisa melalui transfer ke Nomer Rek Bank GTR TOUR TRAVEL</li>
<li>Bank Mandiri : 1660001484955 An. VINO ASIDO</li>
<li>Bank BCA : 0662496934 An. ANDREW YUNAN</li>
</ul>
</div>
</div>
</div>
</div>