I am trying to learning Zend framework. For that I have installed NetBeans IDE and download zend framework's library. I have created one small application by NetBeans IDE and place the zend framework's library under library folder.
Under Controller folder, in IndexController.php file, I have written one action called indexAction() and there I write simply $this->view->assign('title', 'Hello, World!');
.
Under views/scripts/index folder create one file called index.phtml and there I have written out <h1><?php echo $this->escape($this->title); ?></h1>
.
My main folder name is phpproject1
and under that I have created all other folders like application, library,public.
Now please suggest me how to open that action in browser? e.g. - In codeigniter it is like : localhost://project_name/index.php/controller_name/action_name
Thanks in advance.