Hello: Does anyone know the regular expression to strip the HTML in a string without using strip_tags()? I have tested that strip_tages() sometimes strip '<anything>' in a string as HTML.
Thank you!
you can try ereg_replace ("<([>]*)>","",$html)
that sohuld work