Skip to content

Instantly share code, notes, and snippets.

@tuki0918
Created September 8, 2015 15:25
Show Gist options
  • Save tuki0918/250fd56a164061f46650 to your computer and use it in GitHub Desktop.
Save tuki0918/250fd56a164061f46650 to your computer and use it in GitHub Desktop.
slim flash message
<?php
$app->map('/abc', '\App\Controller\UserController:abc')
->via('GET', 'POST')
->name('abcname');
if ($this->app->request()->isPost()) {
$this->app->flash('err', 'message!!!');
$this->app->redirect($this->app->urlFor('abcname'));
}
{{ flash.err }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment