У меня есть следующая форма:
<?php
class Application_Form_RegistrationForm extends Zend_Form{
public function init(){
$country = $this->createElement('select', 'country');
$country->setLabel('country: ')
->setRequired(true);
$email = $this->createElement('text', 'email_address');
$email->setLabel('Email Address: ')
->setRequired(true);
$register = $this->createElement('submit', 'register');
$register->setLabel('Create new Account')
->setIgnore(true);
$this->addElements(array(
$country, $email, $register
));
}
}
?>
Список стран представлен в таблице country
в базе данных.
Можно ли в любом случае заполнить раскрывающийся список стран названиями стран из базы данных?
Любая помощь приветствуется.
Спасибо