Advertisement
Guest User

Untitled

a guest
Feb 29th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1.     public function init()
  2.     {
  3.         $games = new Application_Model_DbTable_Game();
  4.  
  5.         $select = $games->select();
  6.         $select->from('game');
  7.         $select->where('idGameType = ?', 1);
  8.         $select->order('titleGame');
  9.  
  10.         $this->view->games = $games->fetchAll($select);
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement