Guest User

Untitled

a guest
Jul 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. use comb as c;
  3.  
  4. c\add_handler('get', function() {
  5.  
  6. $title = c\ifset('title', 'DEFAULT TITLE!');
  7. $age = (int) c\ifset('age', 0);
  8.  
  9. });
  10.  
  11.  
  12. c\add_handler('post', function() {
  13.  
  14. // handle the POST request
  15.  
  16. });
Add Comment
Please, Sign In to add comment