-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreservation_success.php
49 lines (42 loc) · 1.07 KB
/
reservation_success.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
<?php
include_once "php/connect.php";
$page="reservation";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<?php include_once("php/keywords.php");?>
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/style.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/banner.js"></script>
<script type="text/javascript" src="js/wow.min.js"></script>
<script>
if(!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {
new WOW().init();
};
</script>
<style>
body{width:100%;height:100%;overflow: hidden;}
</style>
</head>
<body>
<!-- 头部 -->
<?php include_once("php/header.php");?>
<!--预约-->
<div class="yuyue">
<div class="yuyue2">
<img src="images/cg.png">
<p>您的预约已成功提交,<br>我们的管家会尽快联系您。</p>
</div>
<a href="reservation_search.php" class="cx">
<img src="images/chaxun.png">
<span>查询预约</span>
</a>
</div>
</body>
</html>
<?php
mysqli_close($link);
?>