Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. class PostsController extends Appcontroller {
  4.    
  5.     var $name = 'Posts';
  6.    
  7.     function index() {
  8.    
  9.     $this->set('posts', $this->Post->find('all'));
  10.    
  11.     }
  12.    
  13.     function hello_world() {
  14.        
  15.     }
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement