Welcome Guest, Not a member yet? Register   Sign In
pagination help
#1

[eluser]Unknown[/eluser]
I`m using the CI pagination and I was wondering if I edit/delete an account on the 3-rd page how do I redirect to that same page (and not the first one) if my parameter is lost by going to edit($accountID).

I have:
edit($id)
{
$first_name=$this->input->post('first_name');
$last_name=$this->input->post('last_name');
$email=$this->input->post('email');
$rez=$this->db->query("UPDATE users SET FIRST_NAME='$first_name', LAST_NAME='$last_name', EMAIL='$email' WHERE ID='$id'");


redirect('welcome');

//here I want to redirect to that same page where the id initially was.
}




Theme © iAndrew 2016 - Forum software by © MyBB