嗨,我是 zend 框架的新手 基本上我想从数据库中填充公司名称列表。实际上我已经做到了,但我也想在选项框中填充它的 id
例子
选择选项值='1' > tcs 选项
选择
这是我的代码
Application_Form_Clientcompanyform extends Zend_Form
$company_list = new Application_Model_Clientcompany;
$showlist = $company_list->companyNameList();
$list=array();
$id=array();
foreach($showlist as $key => $value)
{
$list[]=$value['companyName'];
$id[]=$value['id'];
}
$this->addElement('select', 'companyName', array(
'required' => true,
'filters' => array('StringTrim'),
'style' => array('width:103px'),
'multiOptions' => $list,
'decorators'=>Array(
'ViewHelper','Errors'
但现在我想在数据库中选择框宽度 $id 中的选项中设置值