For my school project, I try to make a form in Zend.
I would like to insert a Validator that the first letter has to be a Capital letter.
What should I change in this piece of code to make this work?
$voornaam = $this->createElement('text', 'voornaam');
$voornaam->setLabel('Voornaam:')
->setAttrib('size', 50)->addValidator('StringLength', false,array(2,30))
->setRequired(true);
If anyone could help me with this, thanks in advance!