2010-01-14 11:29:30 +00:00
|
|
|
<select name="frmSaisie[moisOppositionInsee]">
|
2010-03-03 16:17:49 +00:00
|
|
|
<?php
|
|
|
|
setlocale (LC_TIME, 'fr_FR.UTF-8', 'fra');
|
2010-01-14 11:29:30 +00:00
|
|
|
$month = date("m");
|
|
|
|
for($i=0;$i<12;$i++)
|
|
|
|
{
|
|
|
|
$lastmonth = mktime(0, 0, 0, $month-$i, date("d"), date("Y"));
|
|
|
|
$selected = '';
|
|
|
|
if($i==1) $selected = 'selected';
|
|
|
|
?>
|
|
|
|
<option value="<?=date('Ym',$lastmonth)?>" <?=$selected?>><?=strftime('%B',$lastmonth)?> <?=date('Y',$lastmonth)?></option>
|
2010-03-03 16:17:49 +00:00
|
|
|
<?php
|
2010-01-14 11:29:30 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|