Skip to content

Instantly share code, notes, and snippets.

@victorknust
Last active October 17, 2016 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorknust/673bd6f8d7c691e67b006140b0f8cec6 to your computer and use it in GitHub Desktop.
Save victorknust/673bd6f8d7c691e67b006140b0f8cec6 to your computer and use it in GitHub Desktop.
<?php
$app->get('',
function ( ) {
echo 'Hello!';
}
);
$app->get('user/{id}/profile',
function ( $id ) {
echo 'User: ' . $id;
}
);
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment