Guest User

Untitled

a guest
Jul 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2.  
  3. class Controller_Hello extends Controller {
  4.  
  5. public function action_index()
  6. {
  7. $name = $this->request->param('name', 'world');
  8. $this->response->body("hello {$name}");
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment