Welcome Guest, Not a member yet? Register   Sign In
redirection problem
#4

[eluser]Zorancho[/eluser]
Make sure in your model function you return the last id after inserting.
Then in your controller:
Code:
function insert()
{
  $propid = $this->Model->do_the_insert();
  if($propid)
  {
     redirect('same_controller/addproperty/'.$propid, 'refresh');
  }
}
Always make sure you are getting the $propid after inserting, otherwise don't do the redirect.Do some testing to see what you are getting for it.
Code:
$propid = $this->Model->do_the_insert();
echo $propid;
exit;


Messages In This Thread
redirection problem - by El Forum - 06-19-2009, 12:51 AM
redirection problem - by El Forum - 06-19-2009, 01:07 AM
redirection problem - by El Forum - 06-19-2009, 01:24 AM
redirection problem - by El Forum - 06-19-2009, 06:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB