-
Notifications
You must be signed in to change notification settings - Fork 0
/
buscar.php
93 lines (84 loc) · 3.36 KB
/
buscar.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
<?php
include 'conexion.php';
$bd = conectarBD();
// Listar todas las gaseosas
$sqlListar = "SELECT * FROM gaseosa";
$resultadoListar = mysqli_query($bd, $sqlListar);
// Inicializar la variable $id
$id = null;
$idExiste = FALSE;
// Buscar una gaseosa por su ID
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$id = $_POST['gas_id'];
$sqlBuscar = "SELECT * FROM gaseosa WHERE gas_id = '$id'";
$resultadoBuscar = mysqli_query($bd, $sqlBuscar);
if (isset($resultadoBuscar)) {
if (mysqli_num_rows($resultadoBuscar) > 0) {
$idExiste = TRUE;
} else {
echo "<script>alert('No se encontró ninguna gaseosa con el ID proporcionado.')</script>";
}
}
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="VictoriaVMC" content="GUIA PHP" />
<link rel="icon" href="./No enseño porque NO es Relevante al funcionamiento/perroPepsi.jpg" />
<title>PerriPepsi</title>
<!-- NO ESTA EN LA EXPLICACION, ES UN MINIMO EFECTO VISUAL NADA MAS -->
<link rel="icon" href="./No enseño porque NO es Relevante al funcionamiento/perroPepsi.jpg" />
<link rel="stylesheet" href="./No enseño porque NO es Relevante al funcionamiento/estilo.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poetsen+One&family=Righteous&display=swap" rel="stylesheet">
</head>
<body>
<!-- NO ESTA EN LA EXPLICACION, ES UN MINIMO EFECTO VISUAL NADA MAS -->
<?php
$template_path = "./No enseño porque NO es Relevante al funcionamiento/header.php";
include $template_path;
?>
<!-- Esto si -->
<h1>Listar y Buscar Gaseosas</h1>
<h2>Listado de Gaseosas</h2>
<table border="1">
<tr>
<th>ID</th>
<th>Código de Barras</th>
<th>Marca</th>
<th>Nombre</th>
<th>Precio</th>
</tr>
<?php
// Mostrar resultados de la lista
while ($fila = mysqli_fetch_assoc($resultadoListar)) {
echo "<tr";
// Si hay una búsqueda y el ID de la fila coincide con el ID buscado, resaltar la fila
if (!is_null($id) && $idExiste = TRUE && $fila['gas_id'] == $id) {
echo " style='background-color: #090C9B; color:white'";
}
echo ">";
echo "<td>" . $fila['gas_id'] . "</td>";
echo "<td>" . $fila['gas_codigoBarras'] . "</td>";
echo "<td>" . $fila['gas_marca'] . "</td>";
echo "<td>" . $fila['gas_nombre'] . "</td>";
echo "<td>" . $fila['gas_precio'] . "</td>";
echo "</tr>";
}
?>
</table>
<h2>Buscar Gaseosa por ID</h2>
<form method="post">
<label for="gas_id">ID de la Gaseosa:</label>
<input type="text" name="gas_id" id="gas_id"><br>
<input type="submit" value="Buscar">
</form>
<!-- NO ESTA EN LA EXPLICACION, ES UN MINIMO EFECTO VISUAL NADA MAS -->
<?php
$template_path = "./No enseño porque NO es Relevante al funcionamiento/footer.php";
include $template_path;
?>