Front-end phtml template form doesn't connect to controller.php file
Posted
by
user888786
on Stack Overflow
See other posts from Stack Overflow
or by user888786
Published on 2011-09-09T19:50:27Z
Indexed on
2012/09/16
21:38 UTC
Read the original article
Hit count: 208
The web system which I'm working on right now, has a add.phtml (in views folder) form, which contain normal form elements and pageController.php (in Controller folder) file which has function to be connected when user hit "add page" button on the form. The codes goes like this.
on add.phtml file,
input type = "submit" value ="Add Page"
on pageController.php file,
function insertAction(){
}
For some reason these two doesn't connect now. Is anybody have any idea why this doesn't work or what should I check on this kind of a problem. The web system on zend framewok. I really appreciate if someone can help me.
© Stack Overflow or respective owner