zoekfunctie-zonder-database
Gesponsorde koppelingen
PHP script bestanden
ZOEKEN.HTML
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<html>
<head>
<title>Zoeken</title>
</head>
<body>
<form method="post" action="resultaat.php">
Zoekwoord:<br>
<input type="text" name="zoekwoord"><input type="submit" value="Zoek">
</form>
</body>
</html>
<head>
<title>Zoeken</title>
</head>
<body>
<form method="post" action="resultaat.php">
Zoekwoord:<br>
<input type="text" name="zoekwoord"><input type="submit" value="Zoek">
</form>
</body>
</html>
RESULTAAT.PHP
Code (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
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
<?php
$resultaat = array(
"forum" => "Zoek je het forum? Klik <a>hier</a> om naar het forum te gaan.",
"gastenboek" => "Zoek je het gastenboek? Klik <a>hier</a> om naar het gastenboek te gaan.",
"index" => "Wil je terug naar de index? Klik <a>hier</a> om terug te gaan naar de index.",
"voorwaarden" => "Wil je de voorwaarden bekijken? Klik <a>hier</a> om naar de voorwaarden te gaan.");
if($_SERVER["REQUEST_METHOD"] == "POST")
{
$zoekwoord = $_POST['zoekwoord'];
$status = false;
foreach($resultaat as $k => $v)
{
if($k == $zoekwoord)
{
$status = true;
break;
}
}
if($status)
{
echo $resultaat[$zoekwoord];
}
else
{
echo "Er zijn geen resultaten gevonden";
}
}
?>
$resultaat = array(
"forum" => "Zoek je het forum? Klik <a>hier</a> om naar het forum te gaan.",
"gastenboek" => "Zoek je het gastenboek? Klik <a>hier</a> om naar het gastenboek te gaan.",
"index" => "Wil je terug naar de index? Klik <a>hier</a> om terug te gaan naar de index.",
"voorwaarden" => "Wil je de voorwaarden bekijken? Klik <a>hier</a> om naar de voorwaarden te gaan.");
if($_SERVER["REQUEST_METHOD"] == "POST")
{
$zoekwoord = $_POST['zoekwoord'];
$status = false;
foreach($resultaat as $k => $v)
{
if($k == $zoekwoord)
{
$status = true;
break;
}
}
if($status)
{
echo $resultaat[$zoekwoord];
}
else
{
echo "Er zijn geen resultaten gevonden";
}
}
?>