1
我是初學者zend.I不沒有如何從控制器傳淡水河谷在Zend的framework2.Here使用ZfcUser表更新是我的代碼 在UserController.php如何從控制器傳遞價值,以查看Zend的framework2
公共函數doneAction()
{
$user = "4";
$planname="checking";
$billamount="$89";
$post=array("planname"=>$planname,"billamount"=>$billamount);
$service = $this->getUserService();
$service->done($user,$post);
return new ViewModel();
}
而在ZfcUser/Serivce/user.php的[爲了存儲在DB中的值]
公共函數來完成($用戶,陣列$郵政)
{
$data=array('planname'=>$post['planname'],'billamount'=>$post['billamount']);
$where = $user->getAdapter()->quoteInto('user_id = 4');
$user->update($data, $where);
return true;
}
感謝
謝謝....其工作:) – Sheeba 2013-04-01 06:23:34