Advertising
advertising
related pastes to tag 'zf'
- 986474 - balu: zf
-
- public function noinstallmentsAction()
- {
- $view = new Zend_View();
- $abc = new AcharyaAcl;
- $abc->takeaction(__FUNCTION__);
- $role = $abc->getRole();
- $this->view->menu = $abc->getmenu($role);
- 971529 - bonaparte: zf
-
- SELECT s.sid, s.name, r.rid, r.rdate, c.name, s.STATUS FROM student AS s, registration AS r, student_course_interests AS sc, course AS c WHERE s.sid=r.sid AND s.sid=sc.sid AND c.cid=sc.cid;
- //Maybe this IS it?
- $select = $this->select();
- $select->from(array('s' => 'student'),
- array('s.id','s.name','s.status'));
- 970254 - bonaparte: zf
-
- <?php
- #set_include_path('QuickStart/library' . PATH_SEPARATOR . get_include_path());
- #set_include_path('../theme' . PATH_SEPARATOR . get_include_path());
- require_once 'Zend/Session.php';
- require_once 'Zend/Session/Namespace.php';
- Zend_Session::start();
- 966613 - Bonaparte: zf
-
- <?php
- require_once 'Zend/Controller/Action.php';
- require_once 'Zend/Config/Ini.php';
- require_once 'Zend/Db.php';
- class ApplicantController extends Zend_Controller_Action
- {
- public function registerAction()
- {