Search Functie..
Marijn
14/02/2007 16:22:00Ik heb een pagina die search.php heet..
Maar wie ziet waarom hij niet werkt.. Ik kan geen error report opvragen (instellingen van server)
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
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
<?
include("config/config.php");
if ($_POST['submit'])
{
$sql = "SELECT * FROM tbl_marnic_vacatures WHERE `titel` LIKE '%".$_POST['search']."%'";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)){
echo $row['titel'];
echo "<br>";
}
} else
{
echo"<br>";
echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"5\">";
echo "<form method=\"POST\" action=\"" . $PHP_SELF . "\">";
echo "<tr width=150><td>Tekst:</td>";
echo "<td width=650><input type=\"text\" name=\"search\" style=width:270px></td></tr>";
echo "<tr><td colspan=2><input type=\"submit\" name=\"submit\" value=\"Plaats!\" class=\"buttons\"> <input type=\"reset\" value=\"Wis\" class=\"buttons\"></td></tr>";
echo "</form>";
echo "</table>";
}
?>
include("config/config.php");
if ($_POST['submit'])
{
$sql = "SELECT * FROM tbl_marnic_vacatures WHERE `titel` LIKE '%".$_POST['search']."%'";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)){
echo $row['titel'];
echo "<br>";
}
} else
{
echo"<br>";
echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"5\">";
echo "<form method=\"POST\" action=\"" . $PHP_SELF . "\">";
echo "<tr width=150><td>Tekst:</td>";
echo "<td width=650><input type=\"text\" name=\"search\" style=width:270px></td></tr>";
echo "<tr><td colspan=2><input type=\"submit\" name=\"submit\" value=\"Plaats!\" class=\"buttons\"> <input type=\"reset\" value=\"Wis\" class=\"buttons\"></td></tr>";
echo "</form>";
echo "</table>";
}
?>
Maar wie ziet waarom hij niet werkt.. Ik kan geen error report opvragen (instellingen van server)
PHP hulp
27/11/2024 04:18:51- wes -
14/02/2007 16:24:00wat werkt er niet helder licht
waarschijnlijk je query geen result, en dat zie je niet omdat er geen foutafhandeling in zit... zoals ook al bij je andere vragen steeds terug kwam...
waarschijnlijk je query geen result, en dat zie je niet omdat er geen foutafhandeling in zit... zoals ook al bij je andere vragen steeds terug kwam...