16 lines
400 B
PHP
16 lines
400 B
PHP
|
<select name="frmSaisie[moisOppositionInsee]">
|
||
|
<?php
|
||
|
setlocale (LC_TIME, 'fr_FR','fra');
|
||
|
$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>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
</select>
|