Skip to content

Instantly share code, notes, and snippets.

@hans2103
Created March 11, 2019 14:37
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 hans2103/4f528d9b2f99a393838c1d096f123f0c to your computer and use it in GitHub Desktop.
Save hans2103/4f528d9b2f99a393838c1d096f123f0c to your computer and use it in GitHub Desktop.
RSForm Pro - auto-generate list of years
//<code>
$items[] = array();
$items[] = "|Select your birth year";
$currentYear = date(Y);
foreach (range(1930, $currentYear) as $year) {
$items[] = $year;
}
$items = implode("\n", $items);
return $items;
//</code>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment