me1000 Posted April 4, 2006 Share Posted April 4, 2006 ok here is what i have so far...im trying to add a feature to my search page that will highlight the searched wordssorry for the messy code, it is scattered throughout the page, I just got all the important stuff. i left out a lot of the code, including the loop for diplaying the results. here is the problem...so say you search for the word, dogthen what you see here will replace the word doggy with 'gy' removing the 'dog' part of it all together. hope you can tell me whats wrong with it,Thanks,[code]$inKeyword = preg_match("/^[A-Za-z]([A-Za-z0-9\s]*[A-Za-z0-9])*$/",$_POST['search']) ? $_POST['search'] : die("Bad Search Term Numbers and Letters only");$result = mysql_query("SELECT * FROM $sTableName WHERE PAGE_CONTENT LIKE '%$inKeyword%'");$text_output = strip_tags($message, ''); $search_results = substr($text_output, 0, 200); //begin highlighting searched word $searchterm = array($inKeyword);foreach($searchterm as $searchwords) {$search_results = eregi_replace($searchwords, "<span style=\"background-color: yellow;\"$searchwords </span>", $search_results);} //end highlight search word //display the search resultsecho "$link <br> $search_results ... <br><hr>";[/code] Quote Link to comment https://forums.phpfreaks.com/topic/6614-eregi_replace-help/ Share on other sites More sharing options...
stephenk Posted April 8, 2006 Share Posted April 8, 2006 I didnt examine all your code, but theres an error in the eregi_replace. Try:[code]"<span style=\"background-color: yellow;\>".$searchwords ."</span>";[/code]Stephen Quote Link to comment https://forums.phpfreaks.com/topic/6614-eregi_replace-help/#findComment-25085 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.