0
我在cakePHP中新手。 我在索引中顯示默認當前年份有一些問題.ctp index.ctp的這段代碼。cakePHP - 在index.ctp中設置默認當前年份
<?php
echo $html->tableCells (array (array ('Course',
$form->select('id',$courses)
),
array ('Location',
$form->select('id',$locations)
),
array ('Month',
$form->month('mob')
),
array ('Year',
$form->year('year',2011,2012)
),
)
);
?>
謝謝您的先進:)
謝謝@bfavaretto – azizmuda