If my string is html say $a="<b> TITLE </b>";
If i want to remove the tags, if i use
$a = preg_replace("/<.*>/", "", $a) ;
will that pick the first two brackets or the first and the last ?
Is there a function for stripping HTML tags ?
Thanks a million
Al