Friday, November 29, 2013

how to send value to view page in zendframe work?[Solved]

Simple its using zend framework assign reference function to view page


within controller  function pass value to view page
you can two way to pass value to view page
one is : $this->request=150
Or
$value=150;
$this->view->assign('request',$value);
--------------------------------------------------------------
Get variable value within  view page
like
echo $this->request;

No comments:

Post a Comment