在php / mysql中突出显示搜索结果

时间:2010-04-29 15:22:26

标签: php mysql search highlighting

如何使用php突出显示mysql查询的搜索结果?

这是我的 [已修改] 代码:

$search_result = "";

$search_result = $_GET["q"];

$result = mysql_query('SELECT cQuotes, vAuthor, cArabic, vReference FROM thquotes WHERE cQuotes LIKE "%' . $search_result .'%" ORDER BY idQuotes DESC', $conn)
  or die ('Error: '.mysql_error());


function h($s) {
    echo htmlspecialchars($s, ENT_QUOTES);
} 


?>

    <div class="caption">Search Results</div>
<div class="center_div">
<table>
    <?php while ($row= mysql_fetch_array($result)) { ?>
    <?php $cQuotes = preg_replace($search_result, "<div class='highlight'>".$search_result."</div>", $row['cQuotes']); ?>
        <tr>
            <td style="text-align:right; font-size:15px;"><?php h($row['cArabic']) ?></td>
            <td style="font-size:16px;"><?php h($cQuotes) ?></td>
            <td style="font-size:12px;"><?php h($row['vAuthor']) ?></td>
            <td style="font-size:12px; font-style:italic; text-align:right;"><?php h($row['vReference']) ?></td>
        </tr>
    <?php } ?>
</table>
</div>

2 个答案:

答案 0 :(得分:2)

您可以使用名为HiLite的JavaScript库来完成此操作。它运作得很好。

答案 1 :(得分:2)

你可以使用preg_replace();当它在你的文本中找到一个匹配时,你可以在匹配的单词周围放置一个带有一个高亮类的div。然后,您将为突出显示类添加背景颜色和边框以使其突出显示

preg_replace需要3个参数;

  1. 第一个是您正在寻找的
  2. 第二个是应该改为
  3. 的内容
  4. 他应该搜索并替换
  5. 的文字字符串

    所以例如

    <div class="center_div">
        <table>
        <caption>Search Results</caption>
        <?php while ($row= mysql_fetch_array($result)) { ?>
    <?php $arabic = preg_replace("/".$search_result."/", "<div class='highlight'>".$search_result."</div>", h($row['cArabic'])); ?>
                <tr>
                    <td style="text-align:right; font-size:15px;"><?php $arabic ?></td>
                    <td style="font-size:16px;"><?php h($row['cQuotes']) ?></td>
                    <td style="font-size:12px;"><?php h($row['vAuthor']) ?></td>
                    <td style="font-size:12px; font-style:italic; text-align:right;"><?php h($row['vReference']) ?></td>
                </tr>
            <?php } ?>
        </table>
        </div>
    

    我只为阿拉伯语做过,但你也可能需要为cQuotes,vAuthor和vReference做到这一点。