-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
67 lines (58 loc) · 2.19 KB
/
index.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
<?php
require_once './nav.php';
require_once('./conn.php');
// Query to get total airport
$sql = "SELECT COUNT(*) as airport_count FROM locations";
$stmt = sqlsrv_query($conn, $sql);
while ($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC)) {
$TotalAirport = $row["airport_count"];
}
sqlsrv_close($conn);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style/home.css">
<script type="module" crossorigin src="./swiper_slider.js"></script>
<link rel="modulepreload" href="./swiper_vendor.js" />
<link rel="stylesheet" href="./style/swiper.css" />
</head>
<body>
<header>
<h1>The Airline you know, reimagined for business</h1>
<p>Your trusted platform for luxury flights all over the globe from the convenience of your own home!</p>
<a class=".submit" href="./ticket.php">Book Ticket</a>
</header>
<!-- Include "Most popular Flights" -->
<div class="mpf_wrapper">
<div class="mpf"> <?php include("./mpf.php"); ?></div>
</div>
<h1 class="safety_title">Focused on safety, wherever you go!</h1>
<div class="safety">
<div>
<img src="./image/safety.jpg" alt="">
<h3>Our commitment to your safety</h3>
<p>With every safety feature and every standard in our Community Guidelines, we're committed to helping to create a safe environment for our users.</p>
</div>
<div>
<img src="./image/safety_2.jpg" alt="">
<h3>Setting <?php echo $TotalAirport; ?> airports in motion</h3>
<p>Our services are connect all over the world in various countries which are primarily focused on tourism and luxury experiences. With connects with nearby luxury hotels and new airports joining our network every year we hope to bring you premium experiences at an affordable cost.</p>
</div>
</div>
<?php
include './discount.php';
?>
<div class="sliders" style="height: 600px;">
<?php
include './slider.php';
?>
</div>
<?php
include './footer.html';
?>
</body>
</html>