-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththankyou.php
More file actions
72 lines (57 loc) · 2.28 KB
/
thankyou.php
File metadata and controls
72 lines (57 loc) · 2.28 KB
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
<?php
session_start();
if(!isset($_SESSION['datos_login'])){
}
$arregloUsuario = $_SESSION['datos_login'];
if(isset($_GET['id_venta']) && isset($_GET['metodo'])){
include "./php/conexion.php";
$conexion->query("insert into pagos (id_venta,metodo)
values(".$_GET['id_venta'].",'".$_GET['metodo']."')")or die($conexion->error);
header("Location: ./thankyou.php?id_venta".$_GET['id_venta']);
}
include "./php/mail.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tienda</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Mukta:300,400,700">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="site-wrap">
<?php include("./layouts/header.php"); ?>
<div class="site-section">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<span class="icon-check_circle display-3 text-success"></span>
<h2 class="display-3 text-black">Gracias!<?php echo $arregloUsuario['nombre'];?> </h2>
<p class="lead mb-5">Tu orden fue realizada con exito</p>
<h3>Su orden esta en proceso de envio</h3>
<button class="Envio" onclick="window.location='VerEntrega.php'">Ver proceso de entrega</button>
</div>
</div>
</div>
</div>
<?php include("./layouts/footer.php"); ?>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/main.js"></script>
</body>
</html>