我使用這種方式來設置CakePHP的生日,但是當我回到頁面時,我總是得到當天的日期,所以如果我保存頁面而不觸摸它,我得到今天的日期作爲生日:從CakePHP的數據設置當前的生日
<?php
$attributes = array (
'minYear' => date('Y') - 100,
'maxYear' => date('Y') - 0,
'label'=> false,
'default' => $user['Profile']['birthday'],
'value'=>$user['Profile']['birthday'] // how to set the previous saved data?
);
$options = array (
'id' => 'birthday',
'after' => '<div class="message">Inserisce la tua data di nascita</div>'
);
echo $this->Form->input('Profile.birthday', $attributes, $options);
?>
我怎樣才能將以前保存的數據從數據庫設置到窗體?