-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsuccess.php
50 lines (25 loc) · 980 Bytes
/
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
50
<?php include('001header.php'); ?>
<?php include('004navbar.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<br><br>
<div class="alert alert-success"><span class="fa fa-check"></span> Order was successfully! <a href="myorder.php" class="alert-link">
Click Here to check your order detail.
</a> Products will deliver after receiving the cash.</div>
</div><!-- col-md-6 end -->
<div class="col-md-6 col-sm-6 col-xs-6"></div><!-- col-md-6 end -->
</div> <!-- row end -->
</div><!-- container end -->
<?php
include('confs/config.php');
$del = "DELETE FROM cart";
mysqli_query($mysqli,$del);
?>
<br><br><br>
<?php include('002footer.php'); ?>
<script src='jquery-3.3.1.js' type='text/javascript'></script>
<script src='bootbox.min.js'></script>
<script src='shipping_del_script.js' type='text/javascript'></script>
</body>
</html>