I have a “date_created” field in database and I want to make it hidden in form and current date add in mysql table.
I am working in zend form and below code for date_created element is not working.
$date = date('Y/m/d h:i:s ', time());
$form->addElement('hidden', 'date_created', array(
'decorators' => array('ViewHelper'),
'multioptions' => array(
$date
),
));
edited for formatting
Why are you passing multioptions to an hidden field ?
It’s :