Guest User

Untitled

a guest
Aug 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. require_once "app.class.php";
  3.  
  4. $app = new App;
  5.  
  6.  
  7. // home screen
  8. $app->get('/', function($res) {
  9. $res->send("welcome! :-)");
  10. });
  11.  
  12. // posts
  13. $app->get('/post/(?P<perma>.*)', function($req) {
  14. $req->send("showing post with permalink " . $req->params['perma']);
  15. });
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment