Custom Zend Validator error messages
The Zend Validator error messages are not the most helpful. Considor the below code for creating a file input: $this->addElement('file',…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
The Zend Validator error messages are not the most helpful. Considor the below code for creating a file input: $this->addElement('file',…
When using an inline partial viewscript in my form, I sometimes need access to data. I can accomplish this by…
When creating a Zend Framework site, its always best to keep the Zend library as an external source. This way…
To pass data from your controller, to a Zend_Form, you can utilise the config parameters: $this->view->form = new Contact_Edit_Form(array('contactName' =>…
When using a CLI script with options, I like to use the Zend_Console. If my options are as follows: $console…
I keep having trouble with this simple calculation! So, here is a little example to get the amount of days…
If, like me, you need to access some Zend_Application resources (such as multidb resources) – then you need a reference…