Re: [fw-general] Comment on Zend_Validate

2007-02-02 Thread Markus Wolff
Darby Felton schrieb: We do not yet have a component that provides full functionality for working with forms; this is a large undertaking, and there are a couple of proposals for such: Zend_Form - Simon Mundy & Ralf Eggert http://framework.zend.com/wiki/x/DA4 Zend_Form_Controller Proposal - Sim

Re: [fw-general] Comment on Zend_Validate

2007-02-02 Thread Darby Felton
Hi Troy, I am happy to hear that you are using Zend_Validate; your feedback is much appreciated! > My suggestion is to change how the validation receives it values. For > instance, you have an array as follows: > > $aData = ('username' => 'someone', 'password' => 'somepass'); These data appear

Re: [fw-general] Comment on Zend_Validate

2007-02-02 Thread Markus Wolff
Troy L. Marker schrieb: My suggestion is to change how the validation receives it values. For instance, you have an array as follows: $aData = ('username' => 'someone', 'password' => 'somepass'); You could pass this array to Zend_Validata as follows: $valid = new Zend_Validate($aData); Now ea

[fw-general] Comment on Zend_Validate

2007-02-01 Thread Troy L. Marker
Greetings all. I am woring on a project that requires validation of form data. I am very happy with Zend_Validate. I do have some suggestions tho. I am sure that some of these have been brought up before, and if so, I apologize. My suggestion is to change how the validation receives it values. F