Last active
August 29, 2015 14:02
-
-
Save voku/c6c3f11659307c409791 to your computer and use it in GitHub Desktop.
form dropdown year select options: This is great for forms when needing a dropdown for year. - DEMO: http://ideone.com/QeXXP7
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 htmlDropdownYearSelect() { | |
$yearSelectElement = ''; | |
for ($i = date("Y"); $i >= (date("Y")-100); $i--) { | |
$yearSelectElement .= '<option value="' . $i . '">' . $i . '</option>'; | |
} | |
return ' | |
<select id="year" name="year"> | |
<option value="0000">Year</option> | |
' . $yearSelectElement . ' | |
</select> | |
'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment