Hello to save room on a search result page
I need to strip an HTML tag: <h1>
I tried the following"
Do not get an error but has no effect on the display result.
FYI the "title" is pulled from the DB and its formatting is part of the DB data.
$title = strip_tags($title, '<h1></h1><H1><H/1>');
echo("<td valign='top'>" . "$title" . "</td>\n");
I am doing anything wrong?
thanks
Henry