In CakePHP, if i keep a table field type as date, then it shows dropdown with month, day and year. However, the year range starts from 1990 only, how can I change it to start from 1900?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You can use minYear and maxYear options of an input like this:

<?php

echo $this->Form->input('birth_dt', array(
    'label' => 'Date of birth', 
    'dateFormat' => 'DMY',
    'minYear' => date('Y') - 70,
    'maxYear' => date('Y') - 18 ));

?>

Reference to cakePHP Cookbook

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.