使用php填写月份和年份的下拉列表

时间:2014-04-09 19:17:57

标签: php mysql

好的,我没有话要诚实地提出我的问题!对不起,如果我没有解决我的问题。

我在我的数据库中有一份员工记录,他们在2012年3月加入公司,现在是2014年4月。我需要填写下拉组合框,从当前月份,年份到加入月份和年份PHP。最后,下拉列表看起来像

2014年4月

2014年3月

2014年2月

2013年2月

1 个答案:

答案 0 :(得分:1)

$current = new DateTime();
$end = new DateTime('2012-04-11');

echo '<select>';
while ($current > $end) {
  echo '<option>' . $current->format('M, Y') . '</option>';
  $current->modify('-1 month');
}
echo '</select>';