Could someone please help me to highlight the searchterm in my php search code?
Below is the code that I am currently using, and it works fine. Would just like to add a highlight function but have no idea how to implement that on this code without redoing the whole thing.
I came across Highlight search text in mysql php search thispost which looks very nice. But I'm lost trying to implement this. Some time ago I had a <span>
effect, but couldn't get it into the <table>
to highlight only the searchterm and still loop through the table.
include("config/config.php");
$con = mysql_connect($host, $db_user, $db_pass);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db, $con);
$result = mysql_query("SELECT * FROM data WHERE `data_id` LIKE '%$_POST[searchterm]%'
OR `who` LIKE '%$_POST[searchterm]%'
OR `ref` LIKE '%$_POST[searchterm]%'
OR `asset` LIKE '%$_POST[searchterm]%'
OR `make_model` LIKE '%$_POST[searchterm]%'
OR `serial` LIKE '%$_POST[searchterm]%'
OR `os` LIKE '%$_POST[searchterm]%'
OR `swp` LIKE '%$_POST[searchterm]%'
OR `ea` LIKE '%$_POST[searchterm]%'
OR `dt_in` LIKE '%$_POST[searchterm]%'
OR `status` LIKE '%$_POST[searchterm]%'
OR `dt_out` LIKE '%$_POST[searchterm]%'
");
$num_rows = mysql_num_rows($result);
echo "<center>";
echo "<BR><BR>";
echo "<a href='index.php'><button id='sblogloginbtn' name='login' type='submit'><b>BACK</b></button></a>";
echo "<BR><BR>";
echo "<h1>Your search has found ";
echo "<b><font size='15' color='blue'>$num_rows</font></b>";
echo " records.</font></h1>";
echo "<BR><BR>";
echo "<table border='frame'>
<tr style='color:#FF00FF'>
<th>Signed in By</th>
<th>Reference Number</th>
<th>Asset Number</th>
<th>Make Model</th>
<th>Serial Number</th>
<th>Operating System</th>
<th>Office</th>
<th>Profile</th>
<th>Extra Apps</th>
<th>Time IN</th>
<th>Status</th>
<th>Time OUT</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['who'] . "</td>";
echo "<td>" . $row['ref'] . "</td>";
echo "<td>" . $row['asset'] . "</td>";
echo "<td>" . $row['make_model'] . "</td>";
echo "<td>" . $row['serial'] . "</td>";
echo "<td>" . $row['os'] . "</td>";
echo "<td>" . $row['office'] . "</td>";
echo "<td>" . $row['swp'] . "</td>";
echo "<td>" . $row['ea'] . "</td>";
echo "<td>" . $row['dt_in'] . "</td>";
echo "<td>" . $row['status'] . "</td>";
echo "<td>" . $row['dt_out'] . "</td>";
}
echo "</table>";
echo "<br /><br />";
echo "</center>";
mysql_close($con);
The simplest solution is to use str_replace()
to replace the search term with <span>
tags wrapped around them, styled.
Warning: The way you have your script set up, you're vulnerable to injection attacks. This is just an example to show you how to pass in variables.
See: How can I prevent SQL injection in PHP?
<?php
include("config/config.php");
$con = mysql_connect($host, $db_user, $db_pass);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db, $con);
$term = $_POST[searchterm];
$result = mysql_query("SELECT * FROM data WHERE `data_id` LIKE '%$_POST[searchterm]%'
OR `who` LIKE '%$_POST[searchterm]%'
OR `ref` LIKE '%$_POST[searchterm]%'
OR `asset` LIKE '%$_POST[searchterm]%'
OR `make_model` LIKE '%$_POST[searchterm]%'
OR `serial` LIKE '%$_POST[searchterm]%'
OR `os` LIKE '%$_POST[searchterm]%'
OR `swp` LIKE '%$_POST[searchterm]%'
OR `ea` LIKE '%$_POST[searchterm]%'
OR `dt_in` LIKE '%$_POST[searchterm]%'
OR `status` LIKE '%$_POST[searchterm]%'
OR `dt_out` LIKE '%$_POST[searchterm]%'
");
$num_rows = mysql_num_rows($result);
echo "<center>";
echo "<BR><BR>";
echo "<a href='index.php'><button id='sblogloginbtn' name='login' type='submit'><b>BACK</b></button></a>";
echo "<BR><BR>";
echo "<h1>Your search has found ";
echo "<b><font size='15' color='blue'>$num_rows</font></b>";
echo " records.</font></h1>";
echo "<BR><BR>";
echo "<table border='frame'>
<tr style='color:#FF00FF'>
<th>Signed in By</th>
<th>Reference Number</th>
<th>Asset Number</th>
<th>Make Model</th>
<th>Serial Number</th>
<th>Operating System</th>
<th>Office</th>
<th>Profile</th>
<th>Extra Apps</th>
<th>Time IN</th>
<th>Status</th>
<th>Time OUT</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['who']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['ref']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['asset']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['make_model']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['serial']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['os']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['office']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['swp']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['ea']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['dt_in']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['status']) . "</td>";
echo "<td>" . str_replace($term, "<span class=\"highlight\">$term</span>", $row['dt_out']) . "</td>";
}
echo "</table>";
echo "<br /><br />";
echo "</center>";
mysql_close($con);
?>
And some sample styling:
<style type="text/css">
.highlight { background-color: yellow; }
</style>
i dont see where you are printing the searchterm on your page. also, I would use css style sheets, avoid font tags, for example
<style>
.searchTerm{
background-color:red;
}
</style>
<table>
<tr><th>You searched for<div class='searchTerm'><?php echo $_POST[searchterm];?></div></th></tr>
//rest of page
You will want to use a regex (preg_replace
) to search for your term and replace it with said term surrounded with <span>
</span>
.
Look at the documentation of preg_replace
for how to use it: http://us3.php.net/preg_replace