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/c6c3f11659307c409791 to your computer and use it in GitHub Desktop.
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
<?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