-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.php
127 lines (99 loc) · 3.55 KB
/
contacts.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
<?php
session_set_cookie_params('86400');
session_start();
include("includes/db.php");
include("functions/functions.php");
?>
<?php error_reporting(0);?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PSport | Giỏ hàng</title>
<!--css files-->
<link rel="stylesheet" href="css/contacts.css">
<link rel="shortcut icon" href="assets/favicon.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137426789-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-137426789-2');
</script>
</head>
<body>
<!--Navigation-->
<?php
include 'nav.php';
?>
<!--end Navigation-->
<!--Content-->
<!--Content-->
<div class="wrapper">
<div class="sectionTitleWrapper">
<h3 class="sectionTitle">Liên hệ</h3>
</div>
<div class="info">
<div class="info_map">
<iframe src="https://maps.google.com/maps?width=600&height=400&hl=en&q=ptit&t=p&z=14&ie=UTF8&iwloc=B&output=embed" width="600" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<div class="info_content">
<p>Km 10, Đường Nguyễn Trãi, Hà Nội</p>
<p>MỞ HÀNG NGÀY: 9:00 AM - 10:00 PM.</p>
<p>0686.686.686 ĐỂ ĐẶT HÀNG vui lòng inbox facebook của chúng tôi hoặc truy cập trang web của chúng tôi.</p>
</div>
</div>
</div>
<!--Footer-->
<footer class="footer">
<p class="footer__text">A project made by <a href="https://github.com/Conan286" target="_blank" rel="noopener"
class="link">Huy</a></p>
<div class="footer__icons">
<a href="#" target="_blank" rel="noopener"
class="footer__icon linkedin"><span></span>
<p>Linkedin</p>
</a>
<a href="#" target="_blank" rel="noopener"
class="footer__icon dribbble"><span></span>
<p>Dribbble</p>
</a>
<a href="#" target="_blank" rel="noopener"
class="footer__icon codepen"><span></span>
<p>Codepen</p>
</a>
</div>
</footer>
<!--end Footer-->
</div>
<!--Script Files-->
<script src="js/swiper.min.js"></script>
<!--General-->
<script src="js/main.js"></script>
<script src="js/backTop.js"></script>
<!--Ajax-->
<script src="js/jquery-331.min.js"></script>
<script>
$(document).ready(function(data) {
$(document).on('keyup','.quantity',function() {
var id = $(this).data("product_id");
var quantity = $(this).val();
if(quantity !='') {
$.ajax({
url: "change.php",
method: "POST",
data:{id:id, quantity:quantity},
success:function() {
$("body").load("cart_body.php");
}
});
}
});
});
</script>
<!--end Script Files-->
</body>
</html>