0

您好,我只想显示一个下拉菜单来选择在我的后台发布文章的时间。所以我在我的表“文章”中创建了一个特殊字段,类型为“时间”。我在 cakephp 框架上工作。这是代码:

<?php $this->Form->create(null, array('enctype' => 'multipart/form-data'))) ?>
<?php echo $this->Form->inputs(array('Article.publication_time'/*, array('label' => 'Time')); ?>
<?php $this->Form->end('Submit') ?>

此代码显示一个简单的文本输入。你能解释一下为什么吗?在此先感谢您的帮助!

4

1 回答 1

0

试试这个代码

echo $this->Form->input('Article.publication_time', array('type'=>'date',
   'dateFormat' => 'DMY', 
   'minYear' => date('Y') - 70,
   'maxYear' => date('Y') ,
 ));
于 2012-07-25T10:20:53.067 回答