アルファベット順に注文したいアイテムのリストがあります。コードは次のとおりです。
public function indexAction()
{
$this->authoriseUser();
$this->view->assign('title', 'Clubs');
$this->view->headTitle($this->view->title, 'PREPEND');
$clubs = new Application_Model_DbTable_Clubs();
$this->view->clubs = $clubs->fetchAll();
$select = $clubs->select();
$select->order('club_name ASC');
}
どうしたの?うまくいかないので..
ありがとう