私はZendFrameworkと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は、リダイレクト先のビューの名前です。
よろしくお願いします