Zoekresultaat van vervolgkeuzelijst.
Dit vindt je hier: http://www.vlaamsefietsroutes.be/zoeken3.php
Het werkt prima, maar ik zou nu graag hebben dat er ook rekening wordt gehouden met het type. er zijn twee soorten: Hotel en Overnachtingsaccomodatie.
Als je een trefwoord indrukt, geeft hij dus resultaten weer. Maar nu zou ik graag hebben, dat als een gebruiker 'Hotel' kiest in de keuzelijst, hij alleen de resultaten laat zien van het 'type' hotel, en de overnachtingsaccomodaties weglaat.
Ik hoop da jullie me kunnen helpen, want het zou morgenavond moeten af zijn
Hier is het PHP script dat de zoekresultaten weergeeft:
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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
// Variabele voor de ingevoerde zoekterm:
$trefwoord = "";
// Variabele voor titel van de webpagina:
$paginatitel = "Zoeken";
// Variabele voor (fout)meldingen:
$melding = "<p>Typ een trefwoord in het invoervak en klik op de knop Zoeken.</p>";
if (isset($_GET['q'])) {
$trefwoord = $_GET['q']; // Trefwoord uit het vak 'q'
$trefwoord = strip_tags($trefwoord); // Tags en code verwijderen
$trefwoord = trim($trefwoord); // Witruimte verwijderen
// Zoeken alleen starten als er een trefwoord is ingevoerd:
if (strlen($trefwoord) > 1 ) {
// MySQL-selectiequery met reguliere expressies:
$sql = 'SELECT `Naam`, `Sterren`, `Gemeente`,`Hoofdgemeente`, `Type`, `Straatnaam`, `Nummer`, `Website`';
$sql .= 'FROM `VlaamseHotels` ';
$sql .= 'WHERE `Naam` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Sterren` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Gemeente` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Hoofdgemeente` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Straatnaam` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Nummer` REGEXP "' . $trefwoord . '" ';
// Databaseverbinding openen en query uitvoeren:
define("MYSQL_SERVER", "*****");
define("MYSQL_GEBRUIKERSNAAM", "*****");
define("MYSQL_WACHTWOORD", "*****");
$verbinding = mysql_connect(MYSQL_SERVER, MYSQL_GEBRUIKERSNAAM, MYSQL_WACHTWOORD) or die(mysql_error());
mysql_select_db("*****") or die(mysql_error());
$resultaat = mysql_query($sql) or die(mysql_error());
// Is er een record gevonden?
if (mysql_num_rows($resultaat) < 1) {
mysql_free_result($resultaat); // Resultaatset vrijgeven
mysql_close($verbinding); // Databaseverbinding sluiten
$melding = "<p>Er zijn geen resultaten gevonden voor " . $trefwoord . " </p>";
} else {
$paginatitel = "Zoekresultaten voor " . $trefwoord;
$melding = '<p style="font-size: 14px; font-family: Trebuchet MS; ">Er zijn ';
$melding .= mysql_num_rows($resultaat);
$melding .= " resultaten gevonden voor <strong>" . $trefwoord . "</strong>:</p>";
// Begin van resultatenpagina:
$melding .= '<table cellpadding= "2" cellspacing= "0" border="1" bgcolor="#FFFFFF">';
$melding .= '<tr>';
// Veld "Naam":
$melding .= '<td width="250" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Naam';
$melding .= '</td>';
// Veld "Sterren":
$melding .= '<td width="70" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Sterren';
$melding .= '</td>';
// Veld "Gemeente":
$melding .= '<td width="130" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Gemeente/Stad';
$melding .= '</td>';
// Veld "Hoofdgemeente":
$melding .= '<td width="150" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Type';
$melding .= '</td>';
// Veld "Type":
$melding .= '<td width="70" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Type';
$melding .= '</td>';
// Veld "Straatnaam":
$melding .= '<td width="200" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Straatnaam';
$melding .= '</td>';
// Veld "Nummer":
$melding .= '<td width="50" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Nummer';
$melding .= '</td>';
// Veld "Website":
$melding .= '<td width="150" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Website';
$melding .= '</td>';
$melding .= '</tr>';
$melding .= '<tr>';
// De gevonden producten toevoegen aan de melding:
while ($rij = mysql_fetch_assoc($resultaat)) {
// Resultaat "Naam":
$melding .= '<td width="250" class="style16">';
$melding .= $rij["Naam"];
$melding .= '</td>';
// Resultaat "Sterren":
$melding .= '<td width="70" class="style16">';
$melding .= $rij["Sterren"];
$melding .= '</td>';
// Resultaat "Gemeente":
$melding .= '<td width="130" class="style16">';
$melding .= $rij["Gemeente"];
$melding .= '</td>';
// Resultaat "Hoofdgemeente":
$melding .= '<td width="150" class="style16">';
$melding .= $rij["Hoofdgemeente"];
$melding .= '</td>';
// Resultaat "Postcode":
$melding .= '<td width="70" class="style16">';
$melding .= $rij["Type"];
$melding .= '</td>';
// Resultaat "Straatnaam":
$melding .= '<td width="200" class="style16">';
$melding .= $rij["Straatnaam"];
$melding .= '</td>';
// Resultaat "Nummer":
$melding .= '<td width="50" class="style16">';
$melding .= $rij["Nummer"];
$melding .= '</td>';
// Resultaat "Website":
$melding .= '<td width="150"><a href="http://' . $rij["Website"] . '" target=_blank >';
$melding .= $rij["Website"];
$melding .= '</a>';
$melding .= '</td>';
$melding .= "</tr>\n";
}
// Resultaatset vrijgeven en databaseverbinding sluiten:
mysql_free_result($resultaat);
mysql_close($verbinding);
// Einde van de tabel met resultaten:
$melding .= "</table>\n";
}
}
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="nl">
<head>
<meta http-equiv="Content-Language" content="nl">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title> <?php echo $paginatitel; ?> </title>
<link rel="stylesheet" type="text/css" href="style3.css" title="default" media="screen" />
</head>
<body lang="nl">
<h1>Zoeken naar een hotel: </h1>
<form action="zoeken3.php" method="get">
<table border="0">
<!--DWLayoutTable-->
<tr>
<td height="25" colspan="2" align="left"><input name="q" size="55" value=" <?php echo $trefwoord; ?> "></td>
<td width="170" align="left"><!--DWLayoutEmptyCell--> </td>
</tr>
<tr>
<td width="77" height="30" align="left" valign="middle">
<select id ="h" name="h" size="1">
<option value="Hotel">Hotel</option>
<option value="Over">Overnachtingsaccomodatie</option>
</select> </td>
<td colspan="2" align="left" valign="middle">Kies hier het type accomodatie </td>
</tr>
<tr>
<td height="38" colspan="3" align="left" valign="middle"><input name="submit" type="submit" style="width: 75px; height: 23px;" value="Zoeken"></td>
</tr>
<tr>
<td height="3"></td>
<td width="273"></td>
<td></td>
</tr>
</table>
</form>
<?php
echo $melding;
require_once('footer.inc');
?>
// Variabele voor de ingevoerde zoekterm:
$trefwoord = "";
// Variabele voor titel van de webpagina:
$paginatitel = "Zoeken";
// Variabele voor (fout)meldingen:
$melding = "<p>Typ een trefwoord in het invoervak en klik op de knop Zoeken.</p>";
if (isset($_GET['q'])) {
$trefwoord = $_GET['q']; // Trefwoord uit het vak 'q'
$trefwoord = strip_tags($trefwoord); // Tags en code verwijderen
$trefwoord = trim($trefwoord); // Witruimte verwijderen
// Zoeken alleen starten als er een trefwoord is ingevoerd:
if (strlen($trefwoord) > 1 ) {
// MySQL-selectiequery met reguliere expressies:
$sql = 'SELECT `Naam`, `Sterren`, `Gemeente`,`Hoofdgemeente`, `Type`, `Straatnaam`, `Nummer`, `Website`';
$sql .= 'FROM `VlaamseHotels` ';
$sql .= 'WHERE `Naam` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Sterren` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Gemeente` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Hoofdgemeente` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Straatnaam` REGEXP "' . $trefwoord . '" ';
$sql .= 'OR `Nummer` REGEXP "' . $trefwoord . '" ';
// Databaseverbinding openen en query uitvoeren:
define("MYSQL_SERVER", "*****");
define("MYSQL_GEBRUIKERSNAAM", "*****");
define("MYSQL_WACHTWOORD", "*****");
$verbinding = mysql_connect(MYSQL_SERVER, MYSQL_GEBRUIKERSNAAM, MYSQL_WACHTWOORD) or die(mysql_error());
mysql_select_db("*****") or die(mysql_error());
$resultaat = mysql_query($sql) or die(mysql_error());
// Is er een record gevonden?
if (mysql_num_rows($resultaat) < 1) {
mysql_free_result($resultaat); // Resultaatset vrijgeven
mysql_close($verbinding); // Databaseverbinding sluiten
$melding = "<p>Er zijn geen resultaten gevonden voor " . $trefwoord . " </p>";
} else {
$paginatitel = "Zoekresultaten voor " . $trefwoord;
$melding = '<p style="font-size: 14px; font-family: Trebuchet MS; ">Er zijn ';
$melding .= mysql_num_rows($resultaat);
$melding .= " resultaten gevonden voor <strong>" . $trefwoord . "</strong>:</p>";
// Begin van resultatenpagina:
$melding .= '<table cellpadding= "2" cellspacing= "0" border="1" bgcolor="#FFFFFF">';
$melding .= '<tr>';
// Veld "Naam":
$melding .= '<td width="250" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Naam';
$melding .= '</td>';
// Veld "Sterren":
$melding .= '<td width="70" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Sterren';
$melding .= '</td>';
// Veld "Gemeente":
$melding .= '<td width="130" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Gemeente/Stad';
$melding .= '</td>';
// Veld "Hoofdgemeente":
$melding .= '<td width="150" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Type';
$melding .= '</td>';
// Veld "Type":
$melding .= '<td width="70" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Type';
$melding .= '</td>';
// Veld "Straatnaam":
$melding .= '<td width="200" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Straatnaam';
$melding .= '</td>';
// Veld "Nummer":
$melding .= '<td width="50" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Nummer';
$melding .= '</td>';
// Veld "Website":
$melding .= '<td width="150" style="font-size: 15px; font-family: Trebuchet MS; font-weight: bold;">';
$melding .= 'Website';
$melding .= '</td>';
$melding .= '</tr>';
$melding .= '<tr>';
// De gevonden producten toevoegen aan de melding:
while ($rij = mysql_fetch_assoc($resultaat)) {
// Resultaat "Naam":
$melding .= '<td width="250" class="style16">';
$melding .= $rij["Naam"];
$melding .= '</td>';
// Resultaat "Sterren":
$melding .= '<td width="70" class="style16">';
$melding .= $rij["Sterren"];
$melding .= '</td>';
// Resultaat "Gemeente":
$melding .= '<td width="130" class="style16">';
$melding .= $rij["Gemeente"];
$melding .= '</td>';
// Resultaat "Hoofdgemeente":
$melding .= '<td width="150" class="style16">';
$melding .= $rij["Hoofdgemeente"];
$melding .= '</td>';
// Resultaat "Postcode":
$melding .= '<td width="70" class="style16">';
$melding .= $rij["Type"];
$melding .= '</td>';
// Resultaat "Straatnaam":
$melding .= '<td width="200" class="style16">';
$melding .= $rij["Straatnaam"];
$melding .= '</td>';
// Resultaat "Nummer":
$melding .= '<td width="50" class="style16">';
$melding .= $rij["Nummer"];
$melding .= '</td>';
// Resultaat "Website":
$melding .= '<td width="150"><a href="http://' . $rij["Website"] . '" target=_blank >';
$melding .= $rij["Website"];
$melding .= '</a>';
$melding .= '</td>';
$melding .= "</tr>\n";
}
// Resultaatset vrijgeven en databaseverbinding sluiten:
mysql_free_result($resultaat);
mysql_close($verbinding);
// Einde van de tabel met resultaten:
$melding .= "</table>\n";
}
}
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="nl">
<head>
<meta http-equiv="Content-Language" content="nl">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title> <?php echo $paginatitel; ?> </title>
<link rel="stylesheet" type="text/css" href="style3.css" title="default" media="screen" />
</head>
<body lang="nl">
<h1>Zoeken naar een hotel: </h1>
<form action="zoeken3.php" method="get">
<table border="0">
<!--DWLayoutTable-->
<tr>
<td height="25" colspan="2" align="left"><input name="q" size="55" value=" <?php echo $trefwoord; ?> "></td>
<td width="170" align="left"><!--DWLayoutEmptyCell--> </td>
</tr>
<tr>
<td width="77" height="30" align="left" valign="middle">
<select id ="h" name="h" size="1">
<option value="Hotel">Hotel</option>
<option value="Over">Overnachtingsaccomodatie</option>
</select> </td>
<td colspan="2" align="left" valign="middle">Kies hier het type accomodatie </td>
</tr>
<tr>
<td height="38" colspan="3" align="left" valign="middle"><input name="submit" type="submit" style="width: 75px; height: 23px;" value="Zoeken"></td>
</tr>
<tr>
<td height="3"></td>
<td width="273"></td>
<td></td>
</tr>
</table>
</form>
<?php
echo $melding;
require_once('footer.inc');
?>
Gewijzigd op 01/01/1970 01:00:00 door Sven
zet alles ff in de BBcode
Bedoel je zo?