Using HTMLPurifier I tried to filter my user submission from an FCKEditor. My intention is only to allow some HTML tags such as p, img, a, etc with some their own attributes (such as align or style). But the result is HTMLPurifier still strips the attributes.
Doctype: XHTML 1.0 Transitional Encoding: UTF-8
Here's my config:
require PATH_SYSTEM . 'libs/htmlpurifier/HTMLPurifier.standalone.php';
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.Allowed', 'p[align|style],strong,a[href|title|mailto],em,table[class|width|cellpadding],td,tr,h3,h4,h5,hr,br,u,ul,ol,li,img[src|width|height|alt|class],span[class],strike,sup,sub');
$purifier = new HTMLPurifier($config);
And here's my PHP code:
foreach ($_POST as $post=>$value)
{
$_POST[$post] = $purifier->purify($value);
}
I also tried HTML.AllowedElements and HTML.AllowedAttributes but still produce the same result as my config above.
Thank you.
