-
Notifications
You must be signed in to change notification settings - Fork 0
/
pesan.php
76 lines (65 loc) · 1.88 KB
/
pesan.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
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
<?php
session_start();
if(!isset($_SESSION['username'])) {
header('location:index.php'); }
else { $username = $_SESSION['username'];
}
?>
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
<meta charset="UTF-8">
<title>Elja Ticket | Halaman Pesan</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style-responsive.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="imagetoolbar" content="no" />
<script type="text/javascript" src="scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="scripts/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="scripts/jquery.timers.1.2.js"></script>
<script type="text/javascript" src="scripts/jquery.galleryview.2.1.1.min.js"></script>
<script type="text/javascript" src="scripts/jquery.galleryview.setup.js"></script>
</head>
<body>
<?php
include "menu2.php";
?>
<div class="container">
<div class="main">
<div class="jadwal">
<?php
include "koneksi.php" ;
$sql = "select * from jadwal where status = 'Aktif' ";
$hasil = mysql_query($sql);
if (!$hasil)
die("Gagal query..".mysql_error());
?>
<center>
<?php
while ($row = mysql_fetch_array($hasil)) {
echo " <td> <img src='gambar/$row[gambar]'width=1000 height=320>"." </td> " ;
}
?></center>
</div> <!--/ .middle -->
<div class="stadion"><br>
<div class="wrapper">
<div id="header">
<div class="fl_left">
<h1><center><img src='images/stadium.png'width=1000 height=1000 ></center></h1>
</div>
</div>
</div>
</div> <!--/ .middle -->
<?php
include "pesan_form.php";
?>
</div> <!--/ .main -->
<div class="footer">
<?php
include "footer.php";
?>
</div><!--/ .footer -->
</div>
</div>
</body>
</html>