Guest User

Untitled

a guest
Jun 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. class KeywordsController extends Zend_Controller_Action
  3. {
  4.  
  5. public function init()
  6. {
  7. /* Initialize action controller here */
  8. }
  9.  
  10. public function indexAction()
  11. {
  12. $keywords = new ISPKeywords();
  13.  
  14. $where = array('isp_id = ?' => '8');
  15.  
  16. $this->view->rows = $keywords->fetchAll($where);
  17.  
  18. }
  19.  
  20.  
  21. }
Add Comment
Please, Sign In to add comment