Hi !
I have this text
I'm looking for the PHP code that can loop thru the $text and remove the any string start with %xxxx%
Thanks for your help again.
I have this text
Code:
<?php
$text =<<<EOF
<FORM>
<input type=text name=name value="%name%">
<input type=text name=age value="%age%">
<input type=text name=email value="%email%">
</FORM>
EOF;
?>
I'm looking for the PHP code that can loop thru the $text and remove the any string start with %xxxx%
Thanks for your help again.