-
Notifications
You must be signed in to change notification settings - Fork 0
/
available.php
169 lines (162 loc) · 6.89 KB
/
available.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
session_start();
include('admin/connection.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All Information</title>
<!-- Css Custom Link -->
<link rel="stylesheet" href="./css/style.css" />
<!-- Fontawesome Css Link -->
<link rel="stylesheet" href="./fontawesome/css/all.min.css" />
</head>
<body class="feature-body userbody">
<div class="overall-overlay"></div>
<!--
NAVBAR
-->
<?php
if (empty($_SESSION['user'])):
include('header.php');
?>
<?php else: ?>
<?php
include('loginheader.php');
?>
<?php
endif;
?>
<!--
All Information
-->
<section class="all-information" id="all-information">
<div class="all-information-container">
<h1 class="all-information-title">Available Campsites from GWSC</h1>
<form class="info-search-box" action="avasearch.php" method="POST" >
<div class="search-box">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" name="search" id="info-search" class="id-search" placeholder="Search" required />
</div>
<!-- <select name="selectcountry" id="info-country-select" class="info-country-select">
<option value="" selected disabled>Select A Country</option>
<?Php
// $go_query = mysqli_query($connection, "SELECT * FROM country");
// while ($row = mysqli_fetch_array($go_query)) {
// $countryid = $row['CountryID'];
// $countryname = $row['CountryName'];
// echo "<option value={$countryid}>{$countryname}</option>";
// }
?>
</select> -->
<button name="avapgsearch" class="info-search-link">Search</button>
</form>
<div class="all-cards">
<?php
$query = "SELECT packagedetail.*,packages.*,packagetypes.*,country.* FROM packagedetail,packages,packagetypes,country WHERE packagedetail.PKID=packages.PKID AND packagedetail.PKTID=packagetypes.PKTID AND packages.CountryID=country.CountryID ORDER BY PDetailID DESC";
$go_query = mysqli_query($connection, $query);
while ($out = mysqli_fetch_array($go_query)) {
$pdetailID = $out['PDetailID'];
$pkID = $out['PKID'];
$pkTID = $out['PKTID'];
$price = $out['Price'];
$noOfPeople = $out['NoOfPeople'];
$status = $out['Status'];
$view = $out['View'];
$duration = $out['Duration'];
$img1 = $out['Image1'];
$pkName = $out['PKName'];
$country = $out['CountryName'];
$ptype = $out['PKTName'];
if ($status == "0") {
echo '
<a href="./detail.php?id=' . $pdetailID . '" class="all-card">
<img src="./photo/' . $img1 . '" alt="" class="all-card-img" />
<div class="name-and-views">
<p class="all-card-name">' . substr("$pkName", 0, 25) . '</p>
<p class="all-card-views">
<i class="fa-regular fa-eye"></i>
' . $view . '
</p>
</div>
<div class="country-and-type">
<p class="all-card-country">Duration - ' . $duration . ' Days</p>
</div>
<div class="country-and-type">
<p class="all-card-country">' . $country . '</p>
<p class="all-card-type">' . $ptype . '</p>
</div>
<div class="star-rate-and-price">
<div class="price">
<p><b>$' . $price . '</b>/per person</p>
</div>
</div>
</a>
';
}
}
?>
</div>
</div>
</section>
<!--
FOOTER
-->
<footer>
<div class="footer-container">
<div class="you-are-here">
<h3 class="footer-logo">You are here</h3>
<i class="fa-solid fa-chevron-right arr-right"></i>
<a href="" class="footer-nav-item">Pitch Type And Available</a>
</div>
<div class="footer-info-container">
<p class="copy-right">
© 2023 Global Wild Swimming & Camping All rights reserved
</p>
<div class="footer-info-box">
<a href="" class="footer-icon-box">
<img src="./assets/icons/facebook.svg" class="footer-icon" alt="" />
Facebook
</a>
<a href="" class="footer-icon-box">
<img src="./assets/icons/twitter.svg" class="footer-icon" alt="" />
Twitter
</a>
<a href="" class="footer-icon-box">
<img src="./assets/icons/insta.svg" class="footer-icon" alt="" />
Instagram
</a>
<a href="" class="footer-icon-box">
<img src="./assets/icons/youtube.svg" class="footer-icon" alt="" />
Youtube
</a>
<a href="rssfeed.php" class="footer-icon-box">
<img
src="./assets/icons/rss-feed.svg"
class="footer-icon"
alt=""
/>
Rss Feed
</a>
<!-- <a href="" > -->
<div class="footer-icon-box translatebox" id="google_element"></div>
<!-- </a> -->
</div>
</div>
</div>
</footer>
<!-- google translate script -->
<script src="http://translate.google.com/translate_a/element.js?cb=loadGoogleTranslate"></script>
<script>
function loadGoogleTranslate(){
new google.translate.TranslateElement("google_element");
}
</script>
<!-- Js Custom Link -->
<script src="./js/script.js"></script>
<!-- Fontawesome Js Link -->
<script src="./fontawesome/js/all.min.js"></script>
</body>
</html>