Last active
August 29, 2015 14:02
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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