Entonces ahi tendrias que hacer la llamada al modelo:
ClientController.php
Código PHP:
Ver originalpublic function indexAction()
{
....
$ubigeo = new Model_DbTable_Ubigeo();
$result = $ubigeo->listardepartamentos();
$this->view->departamentos = $result;
}
view/scripts/client/index.phtml
Código HTML:
Ver original<select id="dpto" name="dpto"> <?php foreach ($this->departamentos as $depa) : ?>
<option value=<?php echo $depa->dpto; ?>>
<?php echo $depa->dpto_nombre; ?>
</option> <?php endforeach; ?>
Si bien te va a funcionar no es la mejor manera de hacer esto, deberias trabajar con Zend_Form y no crear el formulario a "pelo".
Salu2.