Quick question, but first from PHP.net:
strip_tags -- Strip HTML and PHP tags from a string
string strip_tags (string str [, string allowable_tags])
Example 1. strip_tags() example
$string = strip_tags($string, '<a><b><i><u>');
In the allowable tags, do you have to include the closing tags as well? (</a></b></i></u>) ? Or will it do it automatically?
Thanks in advance