Hellooo!

'); } dispatch('/two', 'index_two'); function index_two() { flash('notice', 'ON DISPLAY 3'); return html('

Hellooo!

'); } dispatch('/three', 'index_three'); function index_three() { flash('error', 'ON DISPLAY 4'); return html('

Hellooo!

'); } dispatch('/four', 'index_four'); function index_four() { return html('

NO FLASH MESSAGE ON NEXT PAGE

'); } dispatch('/five', 'index_five'); function index_five() { flash('error', 'ON DISPLAY 6'); redirect_to('six'); } dispatch('/six', 'index_six'); function index_six() { return html('

REDIRECTED FROM INDEX FIVE...

There will be no flash message on next page.

'); } run(); # _INLINE templates___________________________________________________________ function html_default_layout($vars){ extract($vars);?> Flash features test

Current flash messages ( flash_now() / $flash )