Microsoft
Software
Hardware
Network
Question : strip html tags except <b></b> and <br /><br>
Hello,
I would like to strip all tags except, <br>, <br /> and <b>.
Is this possible?
<?=$description?>
Answer : strip html tags except <b></b> and <br /><br>
strip_tags takes a second argument which is the list of tags not to strip. See
http://us3.php.net/strip_t
ags
$description = strip_tags($description,"<b
><br>");
Random Solutions
Problem with file name comparison in unix script
NDMP backup failure(99)
Java/J2EE class loading architecture
Install issue: XenApp 5 Feature Pack 3 on W2K8x64
VS2008 - Help with preferences
How do I ensure different backup jobs append to the same tape(s) in a media set through the week Backup Exec 2010?
Change primary smtp addresses for 29 users using powershell for exchange
xp sp2 clients wont log or ping server 2003
Difference between Icefaces,myfaces,richfaces
in JSF?
Doing an INSERT or Update based on if the record already exists or not while importing data from a text file to SQL SERVER 2005.