Welcome Guest, Not a member yet? Register   Sign In
Why aren't my cookies writting?
#1

[eluser]dkindler[/eluser]
Would anyone happen to know why my program fails to write my cookies?

Code:
function login() {
  $this->input->set_cookie("loggedin", TRUE, 7200) or die ("failure to write cookie");
}

and


Code:
function check_global_password($global_password) {
  $pw_in_question = $this->encrypt->decode($global_password);
  $query = $this->db->get('confidentials');
  foreach ($query->result() as $pw) {
   $pw = $pw->password;
  }

  if ($pw == $pw_in_question) {
   $this->session_model->login();
  } else {
   redirect($_SERVER['HTTP_REFERER']);
  }
}


Thank you


Messages In This Thread
Why aren't my cookies writting? - by El Forum - 06-03-2012, 02:15 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 05:35 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 05:38 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 05:42 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 05:54 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 05:56 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 06:45 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 06:59 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 07:35 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 07:58 PM
Why aren't my cookies writting? - by El Forum - 06-03-2012, 09:35 PM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 04:51 AM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 06:12 AM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 07:52 AM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 11:29 AM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 11:34 AM
Why aren't my cookies writting? - by El Forum - 06-04-2012, 11:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB