![]() |
Flashdata always seems one page behind - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Flashdata always seems one page behind (/showthread.php?tid=6438) |
Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]gabe[/eluser] Hi there, just started trying to use the flash. It seems that it is always 1 request behind. Consider the following code Code: $this->session->set_flashdata( 'flash', 'You have already provided us with your details' ); The flash message doesn't show the first time the view is loaded, only if refreshed. How can one get it to show in the view file? I am actually trying to use it along with form validation and my full code looks like this: Code: if( $this->validation->run() == FALSE ) Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]Pascal Kriete[/eluser] The definition of flashdata is that it shows on the next page load. No the next view load. If you need text in a view just pass it as part of the data array. Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]gabe[/eluser] thanks for the reply. So in what circumstance might you want to use flash data? Just so I can get some idea of when it might be useful for me. Thanks a lot. Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]Derek Allard[/eluser] The manual gives a few examples of circumstances gabe, take a look. I also gave a few examples on my blog when I originally wrote these. http://www.derekallard.com/blog/post/enhanced-codeigniter-session-library/ Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]gabe[/eluser] Thanks, Derek You have a well-nice blog! Gabe Flashdata always seems one page behind - El Forum - 02-27-2008 [eluser]Chris.Campbell[/eluser] I use flash say when an event happens, such as creating an account, logging in, posting..etc ![]() Flashdata always seems one page behind - El Forum - 02-28-2008 [eluser]gabe[/eluser] aha and then after setting the flash redirect to another page? |