-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.php
57 lines (41 loc) · 1.46 KB
/
menu.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
<html>
<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>La Granjita</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsivecss" />
</head>
<body>
<!-- HEADER CON PHP -->
<?php include 'includes/header.php' ?>
<!-- HEADER CON PHP -->
<div id="wrapper">
<div id="content">
<div class="container">
<!--<img style="object-fit:cover;width: 100%;height: 100%;" src="https://www.vhv.rs/dpng/d/359-3590456_pagina-en-construccion-png-transparent-png.png">-->
<?php
include('conn.php');
$query=mysqli_query($conn,"select * from `user`");
while($row=mysqli_fetch_array($query)){
?>
<div class="box P">
<img src="<?php echo $row['foto']; ?>" class="porf">
<div class="frijol">
<div class="arroz"><?php echo $row['nombre']; ?></div>
<div class="fantasma" style="top:0px;left:0px"><?php echo $row['descripcion']; ?></div>
<button class="botonbuy"><?php echo $row['precio']; ?></button>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
<!-- FOOTER CON PHP -->
<?php include 'includes/footer.php' ?>
<!-- FOOTER CON PHP -->
</body>
</html>