Ben sadece bu konuyu okudum http://stackoverflow.com/questions/2930533/highlight-search-keywords-on-hover ve aslında oldukça aynı yapıyı kullanmak, ama korkunç görünüyor. Yani ben aynı anda php ve html demek, bir php dosyasında bu döngü güzel yazmak nasıl, bana bir tavsiye verebilir?
<table class="result">
<?php while ($row= mysql_fetch_array($result, MYSQL_ASSOC)) {
$cQuote = highlightWords(htmlspecialchars($row['cQuotes']), $search_result);
?>
<tr>
<td style="text-align:right; font-size:15px;"><?php h($row['cArabic']); ?></td>
<td style="font-size:16px;"><?php echo $cQuote; ?></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 } ?>