-
Notifications
You must be signed in to change notification settings - Fork 1
/
consultar_ventas.php
63 lines (54 loc) · 1.25 KB
/
consultar_ventas.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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<TITLE>Libreria ASIR2</TITLE>
</head>
<body>
<h3>Ventas realizadas:</h3>
<?php
$con=mysqli_connect("localhost", "root", "", "libreria");
// Chequeo el resultado
if (mysqli_connect_errno())
{
echo "Falla la conexion a MySQL";
}else //Si no hay error
{
//insertavalores nuevos en la tabla
$sql="select codigo, nombre, autor, editorial, precio, oferta, precio_rebajado from ventas";
$resultado=mysqli_query($con, $sql);
echo "<table border='1'>";
echo "<tr>";
echo "<th> Codigo </th>".
"<th> Nombre </th>".
"<th> Autor </th>".
"<th> Editorial </th>".
"<th> Precio </th>".
"<th> Oferta </th>".
"<th> Precio Rebajado </th>";
echo "</tr>";
if (mysqli_num_rows($resultado)>0)
{
while ($fila=mysqli_fetch_assoc($resultado))
{
echo "<tr>";
echo "<td> $fila[codigo] </td>".
"<td> $fila[nombre] </td>".
"<td> $fila[autor] </td>".
"<td> $fila[editorial] </td>".
"<td> $fila[precio] </td>".
"<td> $fila[oferta] </td>".
"<td> $fila[precio_rebajado] </td>";
echo "</tr>";
}
}
echo "</table>";
// para cerrar la conexion a la BBDD
mysqli_close($con);
}
?>
</body>
</html>