Rette i søgescript
Kan nogle hjælpe med at rette denne kode til, så den også søger iord_engelsk og ord_svensk
--------------------------------------------------------------------
<?php
// get the q parameter from URL
$q = $_REQUEST["q"];
$hint = "";
include ("../../../Connections/conn.php");
$fname=array();
$query=mysqli_query($conn,"select * from `ordliste`");
while($row=mysqli_fetch_array($query)){
$fname[]=$row['ord_dansk'];
}
// lookup all hints from array if $q is different from ""
if ($q !== "") {
$q = strtolower($q);
$len=strlen($q);
foreach($fname as $name) {
if (stristr($q, substr($name, 0, $len))) {
if ($hint === "") {
$hint = $name;
} else {
$hint .="<br> $name
";
}
}
}
}
echo $hint === "" ? "" : $hint;
?>