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
|
<?php require_once ('../webadmin/basic_info.php');
if(isset($_GET["id"]) && $_GET["id"] > 0){ $order_info = get_order((int)$_GET["id"]); if(empty($order_info)){ echo "<script>alert('Error occur. Cannot find the relevant order'); window.location.href('index.php');</script>"; exit; } }else{ echo "<script>alert('Error occur. Cannot find the relevant order'); window.location.href('index.php');</script>"; exit; } ?> <!DOCTYPE html> <html dir="ltr" lang="en-US"> <head>
<?php require_once ("html_head.php") ?>
</head>
<body class="stretched no-transition">
<?php require_once ("google_analysis.php"); ?>
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php require_once ("html_header.php") ?>
<!-- Content ============================================= --> <section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="heading-block center noborder"> <h1>租用迷你倉已經確認。</h1> <h3>你的合約編號是 <?=$order_info["code"]?>。</h3> <span>謝謝您租用!</span> </div>
</div>
</div>
</section><!-- #content end -->
<!-- Footer ============================================= --> <?php require_once ("html_footer.php"); ?>
</div><!-- #wrapper end -->
<!-- Go To Top ============================================= --> <div id="gotoTop" class="icon-angle-up"></div>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js"></script>
</body> </html>
|