Skip to content

Instantly share code, notes, and snippets.

@thejohn
Created April 20, 2015 11:41
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 thejohn/733be0cef9546a7ff04d to your computer and use it in GitHub Desktop.
Save thejohn/733be0cef9546a7ff04d to your computer and use it in GitHub Desktop.
<select id="yy" name="yy">
<option value="">--Year--</option>
<?php
$startYear = 1920; /*Start counting from the year 1920*/
$endYear = date('Y'); /*End count in the current year*/
foreach (range($startYear, $endYear) as $year) {
?>
<option value="<?php echo $year;?>"><?php echo $year;?></option>
<?php
}
?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment