-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmostrar_producto.php
65 lines (58 loc) · 2.27 KB
/
mostrar_producto.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Producto</title>
<link rel="stylesheet" href="./css/estilos.css">
<script type="text/javascript">
setTimeout(function() {
window.location.href = "index.html";
}, 5000);
</script>
<script type="text/javascript">
if (window.addEventListener) {
var codigo = "";
window.addEventListener("keydown", function(e) {
codigo += String.fromCharCode(e.keyCode);
if (e.keyCode == 13) {
window.location = "mostrar_producto.php?codigo=" + codigo;
codigo = "";
}
}, true);
}
</script>
</head>
<body>
<div class="fondo">
<div class="subfondo">
<?php
include("./inc/settings.php");
try {
$conn = new PDO("mysql:host=" . $host . ";dbname=$dbname", $username, $password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $conn->prepare("SELECT * FROM productos WHERE producto_codigo = " . $_GET["codigo"]);
$stmt->execute();
// set the resulting array to associative
$result = $stmt->fetch(PDO::FETCH_ASSOC);
$renglones = $stmt->rowCount();
if ($renglones == 1) {
echo "<div class='logo2'><img src='img/loog.png'alt='' width='150px' height='100px'></div>";
echo "<h1 class='nombre'>".$result["producto_nombre"]."</h1>";
echo "<h1 class='precio'> $".$result["producto_precio"]."</h1>";
echo "<h1 class='desc'><br>"." ".$result["producto_desc"]."</h1>";
echo "<div class='imgp'><img src='".$result["producto_imagen"]."' width='400px' height='350px'></div>";
echo "<h1 class='cantidad'>Disponible en surcursal:" . $result["producto_cantidad"] . "</h1>";
} else {
echo "<h1>El artículo que usted está buscando<br>no se ha encontrado<br>por favor pase a servicio al cliente</h1>";
echo "<div class='noenc'> <img src='img/noencontrado.png' alt='' width='500px' height='400px'> </div>";
}
} catch (PDOException $e) {
echo "Error: " . $e->getMessage();
}
?>
</div>
</div>
</body>
</html>