-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunidad7.php
55 lines (44 loc) · 924 Bytes
/
unidad7.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="estilos.css">
<style>
form {
border: 1px solid;
border-radius:1rem;
padding: 1rem;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Programación en PHP y MySQL - Nivel Avanzado</h1>
<nav>
<?php include("botonera.php"); ?>
</nav>
</header>
<section>
<h2>Compras</h2>
<?php
require_once 'importar_todo.php';
$carrito = new Carrito($db);
$todosLosProductos=Producto::getAll($db);
foreach($todosLosProductos as $pro)
$pro->mostrarHTMLParaCatalogo();
?>
</section>
<aside>
<?php
$carrito->listar();
?>
</aside>
<footer>
<a href="https://site.elearning-total.com/courses/?com=lb">Programación en PHP y MySQL - Nivel Avanzado</a>
</footer>
</div>
</body>
</html>