Skip to content

Instantly share code, notes, and snippets.

@thesven
Created April 6, 2011 18:22
Show Gist options
  • Save thesven/906209 to your computer and use it in GitHub Desktop.
Save thesven/906209 to your computer and use it in GitHub Desktop.
age drop down from 1-100
<?php
for($i = 1; $i <= 100; $i += 1){
echo("<option value='{$i}'>{$i}</option>");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment