-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter_clients.php
63 lines (57 loc) · 1.62 KB
/
filter_clients.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
<?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>
<style>
table, th, td {
border-bottom: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
</style>
</head>
<body>
<form action="show_filter_clients.php" method="POST" enctype="multipart/form-data">
<table>
<tr>
<td>Nombre: </td>
<td><input type="text" name="nombre"><br></td>
</tr>
<tr>
<td>Primer Apellido: </td>
<td><input type="text" name="apellido1"><br></td>
</tr>
<tr>
<td>Segundo Apellido: </td>
<td><input type="text" name="apellido2"><br></td>
</tr>
<tr>
<td>Poblacion: </td>
<td><input type="text" name="poblacion"><br></td>
</tr>
<tr>
<td>Provincia: </td>
<td><input type="text" name="provincia"><br></td>
</tr>
<tr>
<td>Telefono: </td>
<td><input type="text" name="telefono"><br></td>
</tr>
</table>
<input type="submit" value="Buscar Clientes">
<input type="reset" value="Borrar">
</form>
</body>
</html>