Read 879 times | Created 2013-07-08 04:19:32 | Updated 2013-07-08 04:19:32 | | |

 

<select>
<?php
for($i=0;$i<12;$i++){
  echo "<option value='".date('Ym',strtotime('now +'.$i.' month'))."'>"
      .date('F Y',strtotime('now +'.$i.' month'))
      ."</option>n";
}
?>
</select>