Skip to content

Instantly share code, notes, and snippets.

@voku
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voku/a0a9e2e5e66bc71c36b4 to your computer and use it in GitHub Desktop.
Save voku/a0a9e2e5e66bc71c36b4 to your computer and use it in GitHub Desktop.
form dropdown month select options: This is great for forms when needing a dropdown for month. - DEMO: http://ideone.com/AKutcm
<?php
function htmlDropdownMonthSelect() {
$monthSelectElement = '';
for ($i = 0; $i <= 12; ++$i) {
$time = strtotime(sprintf('-%d months', $i));
$value = date('Y-m', $time);
$label = strftime('%B', $time);
$monthSelectElement .= '<option value="' . $value. '">' . $label . '</option>';
}
return '
<select id="month" name="month">
' . $monthSelectElement . '
</select>
';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment