Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $app = new \Slim\Slim();
  3. $app->get('/hello/:name', function ($name) {
  4.     echo "Hello, $name";
  5. });
  6. $app->run();