我与 Zend 一起开发。是否可以在按下提交按钮时在表单中执行特定控制器的特定操作,而不是打开网页。当前版本:
<form action=<?php echo $this->url(array('controller'=>'translation',
'action'=>'traduction'));?>><input type="submit" value="es"/>
我想要的是:
<form action=<?php
//Execute the action TRADUCTION of the TRASLATION controller and stay in this page ?>>
input type="submit" value="es"/>
我希望我很清楚