Jump to content

CakePHP Date not saving


244863

Recommended Posts

I am using the code below.

 

echo $form->inputs(array(

'TrsAssignment.complete_by'  => array(

'type' => 'date',

'minYear' => date('Y'),

'maxYear' => date('Y', strtotime('+ 5 years')),

'dateFormat' => 'Y',

'selected' => strtotime('+ 1 year')

)

);

 

And it wont save???

 

[TrsAssignment] => Array

        (

            [complete_by] => Array

                (

                    [year] => 2011

                )

)

 

What do I need to do??

Link to comment
https://forums.phpfreaks.com/topic/211682-cakephp-date-not-saving/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.