Skip to content

Instantly share code, notes, and snippets.

@WyriHaximus
Created January 10, 2015 23:03
Show Gist options
  • Save WyriHaximus/5a3cc3692303e6a98d99 to your computer and use it in GitHub Desktop.
Save WyriHaximus/5a3cc3692303e6a98d99 to your computer and use it in GitHub Desktop.
<?php
(function() {
$app = new \Slim\Slim();
$app->get('/hello/:name', function ($name) {
echo "Hello, $name";
});
$app->run();
})();
@ramondelafuente
Copy link

Clever :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment