-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit_motorbikes.php
90 lines (78 loc) · 3.18 KB
/
edit_motorbikes.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
session_start();
if($_SESSION["autentificado"]!= "SI"){
header("Location: index.php?errorusuario=si");
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<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>Fran Quiles</title>
</head>
<body>
<?php
include("conexion.php");
$id=$_GET["id"];
$sentenciaSQL="SELECT * FROM motocicletas where Matricula='$id'";
$result = $conn->query($sentenciaSQL);
$rows= $result->fetchAll();
foreach ($rows as $row){
$matricula=$row['Matricula'];
$marca=$row['Marca'];
$modelo=$row['Modelo'];
$año=$row['Anyo'];
$color=$row['Color'];
$id_cliente=$row['Id_Cliente'];
echo " <form action=update_motorbikes.php method=POST enctype=multipart/form-data>
<table>
<tr>
<td> Matricula: </td>
<td><input type=text name=matricula value=$matricula><br></td>
</tr>
<tr>
<td>Modelo: </td>
<td><input type=text name=modelo value=$modelo><br></td>
</tr>
<tr>
<td>Marca: </td>
<td><input type=text name=marca value=$marca><br></td>
</tr>
<tr>
<td>Año: </td>
<td><input type=text name=año value=$año><br></td>
</tr>
<tr>
<td>Color: </td>
<td><input type=text name=color value=$color><br></td>
</tr>
<tr>
<td>Dni Cliente: </td>
<td>
<select name=id_cliente>";
include("conexion.php");
$sql="SELECT DNI, Id_Cliente FROM clientes";
$result = $conn->query($sql);
$rows= $result->fetchAll();
foreach($rows as $row)
{
$dni=$row['DNI'];
$id=$row['Id_Cliente'];
if ($id==$id_cliente)
echo "<option value=$id selected>$dni</option>";
else
echo "<option value=$id>$dni</option>";
}
echo "</select><br>
</td>
</tr>
</table>
<input type=submit value=Actualizar>";
}
?>
</form>
</body>
</html>