-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tienda.php
33 lines (32 loc) · 1.01 KB
/
Tienda.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
<?php
require_once(dirname(__FILE__).'/config.php');
conectarBaseDatos();
?>
<!DOCTYPE html>
<html lang="es">
<head>
<title>Internet friends - Tienda en Linea</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="pagina">
<!-- Comienza Header -->
<?php include ( ROOT_PATH.'Pagina/header.php') ?>
<!-- Mensaje de error --->
<?php include ( ROOT_PATH.'Pagina/mensajeError.php') ?>
<div class="contenedorDeProductos">
<?php $buscarTodosLosProductos = mysql_query("SELECT * FROM Productos")
or die("Consulta fallida: " . mysql_error());
mostrarProductos($buscarTodosLosProductos);
?>
</div>
</div>
<footer id="footer">
<p>© 2016 <a style="text-decoration:none" href="#">Internet Friends</a></p>
</footer>
</body>
</html>