Welcome Guest, Not a member yet? Register   Sign In
Sessions not saved when changing page
#2

[eluser]Alur[/eluser]
In your controller code i think you should try:

Code:
if ($this->input->post('search')) {
    $data = array(
        'search' => $this->input->post('search'),
        'field' => $this->input->post('field')
    );
    $this->session->set_userdata($data);
}

this way you will not overwrite the search term when you move to the second page...

hope it works!


Messages In This Thread
Sessions not saved when changing page - by El Forum - 05-11-2011, 04:05 PM
Sessions not saved when changing page - by El Forum - 05-11-2011, 04:33 PM
Sessions not saved when changing page - by El Forum - 05-11-2011, 09:27 PM
Sessions not saved when changing page - by El Forum - 05-12-2011, 04:54 AM
Sessions not saved when changing page - by El Forum - 05-12-2011, 08:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB