Skip to content

Instantly share code, notes, and snippets.

@quard8
Created December 10, 2012 09:25
Show Gist options
  • Select an option

  • Save quard8/4249572 to your computer and use it in GitHub Desktop.

Select an option

Save quard8/4249572 to your computer and use it in GitHub Desktop.
login callback
$app->post('/login', function() use ($app) {
if (!$app['session']->isStarted()) {
$app['session']->start();
}
return $app->redirect("/");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment