Zend Framework Default Value Form
php, zend-form, zend-framework
Solution
use form setDefaults
$form->setDefaults(array('name' => 'some value'));
Problem
Hi i'm using zend framework to do my application what i want to do is set a default value to an Zend_form_element_text What i want is that when i start the .phtm page there is already a visible default value into a text area. A user can keep that value or change that. I try to do $name->setValue but it doesn't work...