article

Saturday, December 14, 2019

Highlight Keyword in Search Results with PHP and MySQLi

Highlight Keyword in Search Results with PHP and MySQLi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
 <title>Highlight Keyword in Search Results with PHP and MySQLi</title>
</head>
<body>
<?php
// Database configuration
$dbHost     = "localhost";
$dbUsername = "root";
$dbPassword = "";
$dbName     = "test";
 
// Create database connection
$db = new mysqli($dbHost, $dbUsername, $dbPassword, $dbName);
 
// Check connection
if ($db->connect_error) {
    die("Connection failed: " . $db->connect_error);
}
 
// If the search form is submitted
$searchKeyword = $whrSQL = '';
if(isset($_POST['searchSubmit'])){
    $searchKeyword = $_POST['keyword'];
    if(!empty($searchKeyword)){
        // SQL query to filter records based on the search term
        $whrSQL = "WHERE (Country LIKE '%".$searchKeyword."%' OR CountryAbbrev LIKE '%".$searchKeyword."%')";
    }
}
 
// Get matched records from the database
$result = $db->query("SELECT * FROM countries $whrSQL ORDER BY ID ASC");
 
// Highlight words in text
function highlightWords($text, $word){
    $text = preg_replace('#'. preg_quote($word) .'#i', '<span style="background-color: #F9F902;">\\0</span>', $text);
    return $text;
}
?>
<div class="container">
    <div class="row">
        <div class="col-lg-12">
   <h2>List of Countries</h2>
   <!-- Search form -->
   <form method="post">
    <div class="col-lg-6">
     <input type="text" name="keyword" class="form-control" value="<?php echo $searchKeyword; ?>" placeholder="Search by keyword..." >
    </div>
    <div class="col-lg-6">
     <input type="submit" name="searchSubmit" value="Search" class="btn btn-success">
    </div>
   </form>
   <br/><br/>
   <!-- Search results -->
   <?php
   if($result->num_rows > 0){
    while($row = $result->fetch_assoc()){
     $title = !empty($searchKeyword)?highlightWords($row['Country'], $searchKeyword):$row['Country'];
     $contnet = !empty($searchKeyword)?highlightWords($row['CountryAbbrev'], $searchKeyword):$row['CountryAbbrev'];
   ?>
   <div class="list-item">
    <h4><?php echo $title; ?></h4>
    <p><?php echo $contnet; ?></p>
   </div>
   <?php } }else{ ?>
   <p>No countries found...</p>
   <?php } ?>
  </div>
    </div>
</div>
<style>
.list-item {
    border-bottom: 2px solid #BABABA;
}
</style>
</body>
</html>

Related Post