English 中文(简体)
无法在 zend 框架工作控制器的函数中定义两个查询
原标题:is it not possible to define two queries in a function of zend frame work controller

需要两个 Mysql 查询才能在 zend 控制器的函数中定义 但它显示

错误消息为信件: SQLSTATE[2000]: 语法错误或访问侵犯: 1065 查询为空

public function addisplayAction()
  {

    $registry = Zend_Registry::getInstance();  
$DB = $registry[ DB ];

   $sql = "SELECT cateno,catename,image FROM hl_category ORDER BY`hl_category`.`cateno` ASC LIMIT 0 , 42";
      $result = $DB->fetchAssoc($sql);
    $sql1 = mysql_query("select * from ad where cid=8");
   $result1 = $DB->fetchAssoc($sql1);
  $this->view->assign( title , Member List );
      $this->view->assign( description , Below, our members: );
       $this->view->assign( datas ,$result);    
  $this->view->assign( datas1 ,$result1);   
最佳回答

您使用 Zend 框架, 输入代码 Mysql_query?

您需要使用 Zend_ Db...

http://framework.zend.com/manual/1.11/en/zend.db.html

问题回答

暂无回答




相关问题
Zend 邮件问题,涉及外国char子+ com子

泽斯德邮局在名称被定为具有外国性质(如“保”)和 com(”)的物品时,就放弃了一种例外(因为邮局(邮局)退回假)。 重新提出以下守则。

PHP Framework: Ebay Like Site

I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...

Link to a specific step in onepage checkout

Is it possible to redirect the browser to nth step in the onepage checkout? If so, how would one go about doing it? I m working on a payment module and have a sort of "cancel" action that i would ...

Tagging with Zend Framework

I m trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The name of the MySQL ...

dynamicaly adding textboxes to zend_form

I hope that this is a quick question to answer. I am developing a form using Zend_Form, I have a number of Zend_Dojo_Form_Element_Textboxs to add to this form dynamically. These are added from rows ...

热门标签