<h2>Search</h2>
<form name="search" method="post" action="<?=$PHP_SELF?>">
Search for: <input type="text" name="find" />
<select name="field">
<option VALUE="name">Name</option>
<option VALUE="location">Location</option>
</select>
<input type="hidden" name="searching" value="yes" />
<input type="submit" name="search" value="Search" />
</form>
<?
//This is only displayed if they have submitted the form
$find = $_POST['find'];
$field = $_POST['field'];
$searching = $_POST['searching'];
if ($searching =="yes")
{
//echo "<h2>Results</h2><p>";
//If they did not enter a search term we give them an error
if ($find == "")
{
echo "<p>You forgot to enter a search term";
exit;
}
// Otherwise we connect to our Database
mysql_connect("localhost", "DB_name", "Password") or die(mysql_error());
mysql_select_db("wine") or die(mysql_error());
// We preform a bit of filtering
//$find = strtoupper($find);
//$find = strip_tags($find);
//$find = trim ($find);
$find = mysql_real_escape_string($find);
echo "<br><br><br><font size=5>Searched results for:</b> " .$find;
echo "</font><br><br>";
//Now we search for our search term, in the field the user specified
$data = mysql_query("SELECT * from
(select * FROM chardonnay WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE)
union
select * from pinotnoir WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE)
union
select * from redwines1 WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE)
union
select * from redwines2 WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE)
union
select * from redwines3 WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE)
union
select * from redwines4 WHERE MATCH $field AGAINST('%".$find."%' IN BOOLEAN MODE))
a order by grape, name
");
while($result = mysql_fetch_array( $data ))
{
//And we display the results
$explode_criteria = explode(" ", $_GET['find']);
$highlight = $result['name']; // capture $result['name'] here
foreach ($explode_criteria as $key)
{
// escape the user input
$key2 = preg_quote($key, '/');
// keep affecting $highlight
$highlight = preg_replace( "/" .$key2. "/", "<span style='color: red'>".$key." </span>", $highlight);
echo $highlight;
}
複数の検索用語を強調表示しようとしています。このウェブサイトで検索しましたが、これは私が理解できる最も簡単なコードです。しかし、どういうわけかそれは機能しません。$_GET['find'] を $find に変更すると。1 つのキーワードのハイライトが表示されますが、2 つのキーワードを検索すると複数の重複が表示されます。強調表示しないものもあります。このコードを修正する方法を教えてください。ありがとうございました。