How to print object of type Zend_Db_Table_Rowset with smarty? That is the really question :))
Look:
// Album extends Zend_Db_Table
$album = new Album();
// I get all the rows from table ALBUM
$album = $album->fetchAll();
// Smarty assign
$smarty->assign('album', $album);
And I don´t know how to put this in the TPL file...
