Welcome Guest, Not a member yet? Register   Sign In
Can't login with Freakauth
#2

[eluser]Michael Wales[/eluser]
I'm not familiar with FreakAuth, but I believe it's flash message works similar to CI's default flash messages.

Flash messages are only available upon the next request (and only the next request).

So, this will not work:
Code:
// Controller:
function korn() {
  flashMsg('string');
  $this->load->view('view');
}

// View:
<?= $flash; ?>

This, will work:
Code:
// Controller:
function korn() {
  flashMsg('string');
  redirect('some_method');
}

function some_method() {
  $this->load->view('view');
}

// View:
<?= $flash; ?>


Note - in the second version, we are redirect - thus, creating a new request in which the flash data is available.


Messages In This Thread
Can't login with Freakauth - by El Forum - 02-28-2008, 11:00 AM
Can't login with Freakauth - by El Forum - 02-28-2008, 12:44 PM
Can't login with Freakauth - by El Forum - 02-28-2008, 01:30 PM
Can't login with Freakauth - by El Forum - 03-01-2008, 04:00 AM
Can't login with Freakauth - by El Forum - 06-24-2008, 08:48 PM
Can't login with Freakauth - by El Forum - 08-29-2008, 05:28 PM



Theme © iAndrew 2016 - Forum software by © MyBB