Zend Framework を使用して小さな php アプリケーションに取り組んでいます。を使用してフォームを作成しましたZend_Form
が、ブラウザで表示しようとすると、正しく動作しません。
ここに私のフォームクラスがあります:
class IndexForm extends Zend_Form {
public function init(){
$this->setAction('main/main');
$this->setMethod('post');
$username = $this->addElement('text','uname',array('filters'=>array('StringTrim','StringToLower'),
'validators'=>array('Alpha',
array('StringLength',false,array(3,20)),
),
'required'=>true,
'label'=>'User Name:'));
$password = $this->addElement('password','pwd',array('filters'=>array('StringTrim'),
'validtors'=>array('Alnum',
array('StringLength',false,array(6,20)),),
'required'=>true,
'label'=>'Password:'
));
$login = $this->addElement('submit', 'login', array(
'required' => false,
'ignore' => true,
'label' => 'Login',
));
}
}
?>
これが私のIndexController.phpです
<?php
class IndexController extends Zend_Controller_Action {
public function init() {
/*
* Initialize action controller here
*/
}
public function indexAction() {
include APPLICATION_PATH.'/models/Forms/IndexForm.php';
$form = new IndexForm();
$this->view->form = $form;
}
}
これが私index.phtml
の で、フォームを表示する必要があります。
<html>
<style>
</style>
<body><br>
<img alt="" src="http://localhost/Accounts/application/views/scripts/images/logo.png" width=200px height=80px><!-- see whether you can get the host name dynamically -->
<div id="text" >
<h1>Welcome</h1><br><hr>
<h4>Please Log in To View The Main Page</h4></div>
<?=$this->form?> <!--here I want to display the form-->
<div><?php include APPLICATION_PATH.'/views/scripts/layouts/footer.php';?>
</div>
</body>
</html>
フォームの代わりに得られる出力はform?>
.
どうしてこれなの?私のコードで何が問題になっていますか? 私を助けてください。
前もって感謝します
ちゃる