Normalmente hago las consultas tabla a tabla, pero ahora necesito hacerlas de otra forma:
En el controlador tengo esto:
Código PHP:
public function vertablaAction(){
$db = Zend_Db_Table_Abstract::getDefaultAdapter();
$stmt = $db->query('SELECT * FROM CATEGORIA');
$rows = $stmt->fetchAll();
$this->view->result = $rows;
}
Código PHP:
<table border="1"> <?php $cont = 0;
foreach ($this->result as $res) : ?>
<tr>
<td><?php echo $cont; ?></td>
<td><?php echo $this->escape($res[$cont]['ID_CATEGORIA']); ?></td>
</tr>
<?php $cont = $cont + 1;
endforeach; ?>
</table>
Como sea un ";" o algo de eso me muero XD