I setup the following strip_tags command:
Code: Select all
$inputaboutme=strip_tags($inputaboutme, '<a><b><i><u>');When I put the following text into the textarea:
Code: Select all
<html>
<body background="http://www.cybergrunge.com/bg3.jpg">
<b>Testing 123</b>
</body>
</html>Code: Select all
<html>
<body background=\"http://www.cybergrunge.com/bg3.jpg\">
<b>Testing 123</b>
</body>
</html>Help?
*EDIT*
Corrected typo..