-
Notifications
You must be signed in to change notification settings - Fork 0
/
editar.php
46 lines (39 loc) · 943 Bytes
/
editar.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
<?php
include ("conexion.php");
//Glachi cotizador
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css">
<title>EDITAR - Cotizador INTERHOME</title>
</head>
<body>
<div class="content_wrapper">
<h2>Editar valores de cortinas</h2>
<table border="2">
<tr>
<td>ID</td>
<td>Tipo de cortina</td>
<td>Valor del m2</td>
<td>Hacé clic para editar el valor</td>
</tr>
<?php
$records = mysqli_query($conn,"select * from cortinas"); // fetch data from database
while($data = mysqli_fetch_array($records))
{
?>
<tr>
<td><?php echo $data['id']; ?></td>
<td><?php echo $data['tipo_de_cortina']; ?></td>
<td><?php echo $data['valor']; ?></td>
<td><a href="edit.php?id=<?php echo $data['id']; ?>" class="button">Editar</a></td>
</tr>
<?php
}
?>
</table>
</div>
</body>
</html>