我开始更广泛地使用 Zend Framework 和 MVC,如果他在表单中输入了某些内容,我无法设法重定向用户......
<?php
class adresseController extends Zend_Controller_Action {
public function init() {
global $config;
$protocol = strtolower(substr($_SERVER["SERVER_PROTOCOL"], 0, 5)) == 'https' ? "https://" : "http://";
$this->view->url = $protocol . $config->app->url;
}
public function adresseAction() {
//Si la méthode isPost() de l'objet de requête renvoie true, alors le formulaire a été envoyé.
if ($this->getRequest()->isPost()) {
//récupération des données
$prenom = $form->getValue('prenom');
if($prenom == "arnaud")
{
$this->_helper->redirector("inscription/index");
}
}
}
}
?>
我的 HTML 表单中有问题的字段:
<div><input type="text" name="prenom" value="" title="Prénom *" class="small error"/>
inscription/index 是我想要重定向到的视图的名称。
在此先感谢您的帮助