Parse how to create a FORM under zendFarmework. 1. First, let's set up our program so that Zend can automatically load the method. the code for manually loading and copying the code is as follows: require_onceZendLoaderAutoloader.p
1. First, let's set up our program so that Zend can automatically load the method without manual loading.
The code is as follows:
Require_once 'zend/Loader/Autoloader. php' // load the automatic loading class
$ Loader = Zend_Loader_Autoloader: getInstance (); // automatically instantiate
$ Loader-> registerNamespace ('application _ '); // register the namespace (only the default and registered namespaces can be automatically loaded)
$ Loader-> registerNamespace (array ('foo _ ', 'Bar _'); // register multiple namespaces
$ Loader-> setFallbackAutoloader (true); // A method that increases consumption and directly loads all classes without namespaces (not recommended)
Then pay attention to whether your include directory already contains your own directory to be loaded
The code is as follows:
Set_include_path (implode (PATH_SEPARATOR, array (
Realpath (APPLICATION_PATH. '/../library '),
Realpath (APPLICATION_PATH. '/forms /'),
Get_include_path (),
)));
// Here we include our forms directory to facilitate program loading
2. check the form directory.
Create a Guestbook. phps under application/forms/
As a form class file, it is as follows:
The code is as follows:
Class Application_Form_Guestbook extends Zend_Form
{
Public function init ()
{
// Set the method for the display form to POST
$ This-> setMethod ('post'); // you can specify the submission method.
// Add an email element
$ This-> addElement ('text', 'Email ', array (// original type, noun, and definition of some other information
'Label' => 'Your email address :',
'Requestred' => true,
'Filters '=> array ('stringtrim '),
'Validatator' => array (
'Emailaddress ',
)
));
// Add the comment element
$ This-> addElement ('textea ', 'comment', array (
'Label' => 'Please Comment :',
'Requestred' => true,
'Validatator' => array (
Array ('validator' => 'stringlength', 'options' => array (0, 20 ))
)
));
// Add a captcha
$ This-> addElement ('captcha ', 'captcha', array (
'Label' => 'Please enter the 5 letters displayed below :',
'Requestred' => true,
'Captcha '=> array (
'Captcha '=> 'figlet ',
'Wordlen' => 5,
'Timeout' = & gt; 300
)
));
// Add the submit button
$ This-> addElement ('submit ', 'submit', array (
'Ignore' => true,
'Label' => 'sign guestbook ',
));
// And finally add some CSRF protection
$ This-> addElement ('hash', 'csrf', array (
'Ignore' => true,
));
}
}
Then add a route control file
Applictaion/controller/GuestbookController. php
The code is as follows:
Class GuestbookController extends Zend_Controller_Action
{
// Snipping indexAction ()...
Public function signAction ()
{
$ Request = $ this-> getRequest (); // Obtain the received information
// Include_once ("../application/forms/Guestbook. php"); manually loaded class, required only when it cannot be loaded automatically
$ Form = new Application_Form_Guestbook; // instantiate this method
If ($ this-> getRequest ()-> isPost () {// if the result is passed by POST
If ($ form-> isValid ($ request-> getPost () {// determines whether the pass is valid
$ Comment = new Application_Model_Guestbook ($ form-> getValues ());
$ Mapper = new Application_Model_GuestbookMapper ();
$ Mapper-> save ($ comment );
Return $ this-> _ helper-> redirector ('index ');
}
}
$ This-> view-> form = $ form; // assign a value to an attempt
}
}
Add a simple sign View File:
Address: application/views/scripts/guestbook/sgin. php
The code is as follows:
Please use the form below to sign our guestbook!
$ This-> form-> setAction ($ this-> url ());
Echo $ this-> form;
The compile code is as follows: require_once 'zend/Loader/Autoloader. p...