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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php session_start();
if(isset($_SESSION['username'])){
//koneksi terpusat
include "config/koneksi.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/print.css" rel="stylesheet">
<link href="css/metro-bootstrap-responsive.css" rel="stylesheet">
<link href="css/iconFont.css" rel="stylesheet">
<link href="css/docs.css" rel="stylesheet">
<!-- Load JavaScript Libraries -->
<script src="js/jquery/jquery.min.js"></script>
<script src="js/jquery/jquery.widget.min.js"></script>
<script src="js/jquery/jquery.mousewheel.js"></script>
<!-- Metro UI CSS JavaScript plugins -->
<script src="js/load-metro.js"></script>
<!-- Local JavaScript -->
<script src="js/docs.js"></script>
<style>
</style>
<title>Booking Paket</title>
</head>
<body class="metro" style="background-color: #F1F1F1;">
<header class="bg-darkCobalt" data-load="atasan.php"></header>
<?php
$comot=mysql_query("SELECT * FROM tbl_pesan, tbl_paket, tbl_hotel, tbl_user WHERE tbl_pesan.id_user=tbl_user.id_user AND
tbl_pesan.id_paket=tbl_paket.id_paket AND tbl_pesan.id_hotel=tbl_hotel.id_hotel AND id_pesan=".$_GET['id']);
$isi_tbl=mysql_fetch_array($comot);
?>
<!-- ---------------------------------------- ISI TAB ------------------------------------- -->
<br />
<form>
<div class="container padding20 grid" style="background-color: #FFFFFF;">
<legend>NINA Tour dan Travel <i class="place-right"><small>Tanggal : <?php $tgl= date("d M Y"); echo $tgl;?></small></i></legend>
<div class="row">
<div class="span4">
<p class="tertiary-text-secondary"><strong>NINA Tour and Travel </strong><br />
Jalan Rimbo Kaluang<br />
No. 70 depan Gor Agus Salam<br />
Padang, Sumbar</p>
<p class="tertiary-text-secondary">ninatourtravel@yahoo.co.id<br />
085376543125</p>
<p class="tertiary-text-secondary">BCA : 3120618040 a/n Nini Gumaneri<br />
Mandiri : 1110005416478 a/n Nini Gumaneri</p>
</div>
<div class="span3">
<a class="tertiary-text-secondary"></a>To<br />
<p><strong><?php echo $isi_tbl['nama_user'];?></strong><br />
<?php echo $isi_tbl['email_user'];?><br />
Phone: <?php echo $isi_tbl['no_hp'];?><br />
<?php echo $isi_tbl['alamat'];?></p>
</div>
<div class="span4 place-right">
<p class="tertiary-text-secondary text-right">nina-00<?php echo $isi_tbl['id_pesan'];?></p>
<p class="tertiary-text-secondary text-right">Tgl Pesan: <?php echo $isi_tbl['tgl_pesan'];?><br />
Tgl Perjalanan: <?php echo $isi_tbl['tgl_tour'];?></p>
</div>
</div>
<div class="row">
<table class="table">
<thead>
<tr>
<th class="text-left" width="5%">#</th>
<th class="text-left" width="30%">Nama Paket/Penginapan</th>
<th class="text-left" width="15%">Kode</th>
<th class="text-left" width="35%">Keterangan</th>
<th class="text-center" width="15%">Biaya</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" width="5%">1</td>
<td class="text-left" width="30%"><?php echo $isi_tbl['nama_paket'];?></td>
<td class="text-left" width="15%">PKT14-00<?php echo $isi_tbl['id_paket'];?></td>
<td class="text-left" width="35%"><?php echo $isi_tbl['ket_paket'];?></td>
<td class="text-right" width="15%"><?php echo $isi_tbl['harga_paket'];?> IDR</td>
</tr>
<tr>
<td class="text-left" width="5%">2</td>
<td class="text-left" width="30%"><?php echo $isi_tbl['hotel'];?></td>
<td class="text-left" width="15%"><?php echo $isi_tbl['kd_daerah'];?>-HT0<?php echo $isi_tbl['id_hotel'];?></td>
<td class="text-left" width="35%"><?php $baca=substr($isi_tbl['ket_hotel'], 0, 250); echo $baca." ...";?></td>
<td class="text-right" width="15%"><?php echo $isi_tbl['harga'];?> IDR</td>
</tr>
<tr class="selected">
<td class="text-left" width="5%"></td>
<td class="text-left" width="30%"></td>
<td class="text-left" width="15%"></td>
<td class="text-left" width="35%"><strong>Total Biaya</strong></td>
<td class="text-right" width="15%"><strong><?php echo $total=$isi_tbl['harga_paket']+$isi_tbl['harga'];?></strong> IDR</td>
</tr>
</tbody>
</table>
</div>
<a class="image-button primary image-left" href="javascript:window.print()"><i class="icon-printer bg-cobalt"></i>Print</a>
<a class="image-button danger" href="ticket.php?id=<?php echo $isi_tbl['id_pesan'];?>" target="_blank">Download Tiket PDF<i class="icon-file-pdf bg-red"></i></a>
</div>
</form>
<!-- ---------------------------------------- ISI TAB ------------------------------------- -->
<footer class="dark" data-load="bawahan.html"></footer>
</body>
</html>
<?php
}else{
session_destroy();
header('Location:formRegistrasi.php?status=Silahkan Login');
}
?>