Ben böyle bir html form oluşturduğunuzda:
$form = new Zend_Form();
$form->setMethod('post');
$form2->addElement('textarea', 'Name with Space');
HTML olur:
...
<textarea name="NamewithSpace" id="NamewithSpace" rows="24" cols="80"></textarea>
...
Mention that the input name becomes camelcase!
Ben $ form-> GetValues çağırdığınızda (); dolu textarea ile bir yazı sonra sonucudur:
array('Name with Space' => NULL); // Whitespace name! But value empty!
Ben $ this-> getRequest () çağırdığınızda; dolu textarea ile bir yazı sonra sonucudur:
array('NamewithSpace' => 'filled in value'); // Camelcase name! Value filled, but name changed!
How can I access the filled in values with the setted name 'Name with Space'?
Ben ZF 1.7.6 kullanıyorum.