The TitleField in my DB reads:
Some title <span class=BoldRed>* </span>
This shows up correctly, with the asterisk in the correct format, when
shown on the web.
I also want to show this field without any of the formatting; i.e.
Some title *
I've tried:
$notags = stripslashes($r ow['title']);
and also
$notags = htmlspecialchar s($row['title']);
but still get the tag info. How can I get rid of it?
Some title <span class=BoldRed>* </span>
This shows up correctly, with the asterisk in the correct format, when
shown on the web.
I also want to show this field without any of the formatting; i.e.
Some title *
I've tried:
$notags = stripslashes($r ow['title']);
and also
$notags = htmlspecialchar s($row['title']);
but still get the tag info. How can I get rid of it?
Comment