Jump to content

str_replace


rockinaway

Recommended Posts

FOr my search I am highlighting matches.. and I have one problem.

 

I am using:

 

str_replace($_GET['keywords'], 'MY HIGHLIGHT CODE', $search results)

 

However with this is the search term was 'test', then it only highlights 'test', and not similar words like 'Test' etc

 

Is there anyway this can be solved?

Link to comment
Share on other sites

SO this doesn't work:

 

<?php

if(isset($_GET['keyword']))
{
    $keyword = $_GET['keyword'];

    $txt = 'Hello world how are you today?';

    $txt = eregi_replace('(' . $keyword. ')', "<b style=\"color: red;\">\\0</b>", $txt);

    echo $txt;
}

?>
<form action="" method="get">
Keyworld: <input type="text" name="keyword" value="hello"><br />
<input type="submit" value="Highlight Keyword">
</form>

 

When you use ereg you are using regular expressions. So you're best of reading up on the basics of regular expressions in or der to understand. Also you're best of readin up on how the ereg function works too, before I linked you to the eregi function which doesnt explain how ereg works.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.