How to stop CodeIgniter by adding semicolons ; to data sent via POST that contains ampersand and and ?
For example, it converts "a = 1 & b = 2 & c = 3" to "a = 1 & b; = 2 & c; = 3". From a look at the forums, it seems that this is XSS filtering, which I don't want to disable on the site only for 1 controller, so I tried the code below, but it still does this:
$this->config->set_item('global_xss_filtering',false);
source share