hello all!
I searched the forum and didn't find the solution for my problem.
I want to remove from a string some html tags.
I think my question is simple
to remove this:
<FONT face="Times New Roman">
i just use this
$text = ereg_replace('<FONT face="Times New Roman">', '', $text);
but this tag may be
<FONT face="Times New Roman" size = "5">
so my question is how do i get everything from "<FONT " to ">"
so i can clear all these tags.
thanks!!