Can anyone tell me the proper syntax to replace
<FONT SIZE="15">
with
<FONT SIZE="5">
using str_replace on a variable called $text ?
TIA Colin
hmmm never used this function but
$new_string=str_replace("<FONT SIZE=\"15\">", "<FONT SIZE=\"5\"> ")
should work