2009年8月1日星期六

Re: [fw-db] fecthing data with option


What if you try this one :

$where = $choice .'= ?,'. $material;
$select = $searchDatabase->select()->where($where);
$rows = $searchDatabase->fetchAll($select);
$this->view->searchDatabase = $rows;

$select = $table->select()
                       ->where($verifiedcolumn  . '= ?', $material)
                       ;
$rowset = $table->fetchAll($select);

- pw 

没有评论: