I am developing a website in codeigniter. While I am trying to access controller function it gives white space screen rather than error specific. I have tried to put error_reporting(e_all)
in my function name but no luck.
Below is my controller function
function update_something($post)
{
error_reporting(e_all);
}
How to enable error in CI?