Codeigniter flashdata not working in internet explorer and chrome but it is working on firefox.What could be the issue?.
In My controller:-
$this->session->set_flashdata('login_error','Your username or password is incorrect.');
redirect(base_url().'admin/login');
In My view
echo '<span>'.$this->session->flashdata('login_error').'</span>';
In Chrome and ie i'm getting blank span whereas in firefox it is displaying flash data.
There are similar questions on the stack but i could not find any answer which are working.