In Zend Framework, I have one controller
class TestController extends Zend_Controller_Action
{
public function indexAction()
{
}
public function getResultByID( $id )
{
return $id;
}
}
How can I call the function getResultByID in index.phtml ?