let say i have a text :
this line is the first line of this text called %title%
this line is the second one
the third line, %title% shouldn't be replaced
...
last line
now I want to use PHP so the text becomes :
this line is the first line of this text called MY_TITLE
this line is the second one
the third line, %title% shouldn't be replaced
...
last line
NOTICE the %title% on the third line also
what would be the best (fastest) way to do that ?