i have a problem.
I add this helper to codeigniter and follow all steps to install htmlpurifier and integrate with CI.
I made a new config:
case 'ckeditor':
$config = HTMLPurifier_Config::createDefault();
$config->set('Core.Encoding', 'utf-8');
$config->set('HTML.Doctype', 'XHTML 1.0 Strict');
$config->set('HTML.Allowed', 'p,a[href|title],b,strong,blockquote[cite],i,u,h3,h4,h5,h6,pre,address,em,img[class|src|title|alt]');
$config->set('AutoFormat.AutoParagraph', TRUE);
$config->set('AutoFormat.Linkify', TRUE);
$config->set('AutoFormat.RemoveEmpty', TRUE);
break;
This config dont allow any tags, but i specified in my config and call this config in my code:
$Clean_ProyectoDescripcion = html_purify($ProyectoDescripcion, 'ckeditor');