Let's say I have this block of text in a string:
hello guys good man
I would like to convert this string (using PHP) to something like this:
<a href="http://www.dumbsearch.com/now/searchcompleted.php?q=hello">hello</a> <a href="http://www.dumbsearch.com/now/searchcompleted.php?q=guys">guys</a> <a href="http://www.dumbsearch.com/now/searchcompleted.php?q=good">good</a> <a href="http://www.dumbsearch.com/now/searchcompleted.php?q=man">man</a>
Thanks a heck in advance! :)
Would this envolve some regular expressions or something?