>isnt that what you want?
Hmm? Yes. But it doesn't work for me? It cannot be a php verison thing, can it?
I have phpversion() 4.1.2. I don't get it? :)

Compare with:
http://compcanlit.usherbrooke.ca/new1/db/index.php?searchenquiry=Never%20Cry%20Wolfe
and then:
http://compcanlit.usherbrooke.ca/new1/db/index.php?searchenquiry=Never%20cry%20Wolfe

Here is my code:
<td>".preg_replace ('/('.$searchenquiry.')/i' , "<b>$1</b>", $mydata->AU)."&nbsp;</td>
<td>".preg_replace ('/('.$searchenquiry.')/i' , "<b>$1</b>", $mydata->ST)."&nbsp;</td>
<td>".preg_replace ('/('.$searchenquiry.')/i' , "<b>$1</b>", $mydata->BT)."&nbsp;</td>
<td>".preg_replace ('/('.$searchenquiry.')/i' , "<b>$1</b>", $mydata->JR)."&nbsp;</td>


> I just tried this code:
>
> $searchenquiry = "Never cry Wolfe";
> $mydata = "... Never Cry Wolfe ...";
> $new = preg_replace ('/('.$searchenquiry.')/i' , "<b>$1</b>", $mydata);
> echo "<td>$new&nbsp;</td>";
>
> here was my output:
>
> <td>... <b>Never Cry Wolfe</b> ...&nbsp;</td>
>
> isnt that what you want?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to