I am working with codeigniter, using ckeditor for text editing, while saving the text into database the css effects are filtering,
If I changed the $config['global_xss_filtering'] = FALSE;
in config.php file it working properly.
But I want to change it only for some functions
Otherwise it should be $config['global_xss_filtering'] =TRUE
as written in config.php file
I am Using
$this->config->load('config');
$this->config->set_item('global_xss_filtering', FALSE);
but it is not working, please suggest me answer.