| php Programming Glossary: memberfunctionCalling member function of other controller in zend framework? http://stackoverflow.com/questions/886291/calling-member-function-of-other-controller-in-zend-framework  function indexAction  general action  public function memberFunction  a resuable function Here's another controller php class SecondController.. public indexAction  here i need to call memberFunction of FirstController Please explain how i can access memberFunction.. of FirstController Please explain how i can access memberFunction from second controller. Solution Better idea is to define a.. 
 |