hello
I want to write a script, that excludes content in a variable between the brackets < > and brackets itself.
For example:
to turn $content = "hi <h1>bye</h1>"; into $content2 = "hi bye";
thanx, Prox
See the manual, strip_html().
thanks!