-
Notifications
You must be signed in to change notification settings - Fork 0
/
41_search_1page.php
70 lines (50 loc) · 1.76 KB
/
41_search_1page.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mysql bbdd</title>
<!-- Hace todo desde la misma página -->
<?php
/* El código php en el head, al cargar es lo primero que lee siempre
Pero lo meto en función para controlar ejecución. */
function execute($theSearch){
require("38_connection.php");
$connection = mysqli_connect($db_host, $db_user, $db_pass, $db_name);
if (mysqli_connect_errno()){
echo "Connection fail.";
die();
}
mysqli_set_charset($connection, "utf8");
$query = "SELECT * FROM productos WHERE descripcion LIKE '%" . $theSearch . "%'";
$result = mysqli_query($connection, $query);
while(($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) == true){
echo "<table><tr><td>";
echo $row["referencia"] . "</td><td>";
echo $row["descripcion"] . "</td><td>";
echo $row["codfamilia"] . "</td>";
echo "</tr></table>";
}
mysqli_close($connection);
}
?>
</head>
<body>
<?php
$mySearch = $_GET["search"];
/* $_SERVER ¿A qué página tiene que llamar
PHP_SELF a ella misma*/
$myPage = $_SERVER["PHP_SELF"];
/* La 1ª vez que entra $mySearch es null, así que pinta el form.
Submit recarga la página, pero $mySearch tiene valor así
que ejecuta función. */
if ($mySearch){
execute($mySearch);
}else{
echo("<form action = '" . $myPage . "' method='get'>
<label>Search<input type='text' name='search'></label>
<input type='submit' name='send' value='Send'>
</form>");
}
?>
</body>
</html>