Welcome Guest, Not a member yet? Register   Sign In
input->set_cookie or setcookie not work
#6

[eluser]toopay[/eluser]
You can do this simple foo bar example. Dont set anything else, like expiration time etc, we can fix that later.
Code:
// In some test controller
public function foo()
{
   setcookie('foo','From foo cookies');
   redirect('controllername/bar');
}
public function bar()
{
   // escape any harmfull script
   $bar = $this->input->cookie('foo',TRUE);
   var_dump($bar);
}


Messages In This Thread
input->set_cookie or setcookie not work - by El Forum - 07-21-2011, 03:10 PM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 02:27 AM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 07:30 AM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 08:42 AM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 02:44 PM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 03:03 PM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 03:42 PM
input->set_cookie or setcookie not work - by El Forum - 07-22-2011, 07:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB