I am having a problem with cakephp input type date.
How can I make December to Dec, January to Jan and so on?
I have this code:
$this->Form->input('Profile.birthday', array(
'label' => '',
'dateFormat' => 'MDY',
'minYear' => date('Y') - 112,
'maxYear' => date('Y')
));
dateformat option will allow you to configure the date parts.