View Single Post
  #2 (permalink)  
Old 03-05-2008, 03:29 PM
xentek's Avatar
xentek xentek is offline
Senior Member
 
Join Date: Feb 2008
Posts: 112
Default

In IndexController.php, where is your action method?
You need something like this to put your code in:

Code:
function indexAction()
{
     $album = new Album();
     $this->view->albums = $album->fetchAll();
     // ...
}
What is indexIndex.php?

If that is your view file, it should be index.phtml and stored in an index folder inside of your views directory.

Hope this helps!
Reply With Quote