Skip to content

Instantly share code, notes, and snippets.

@cyancey76
Created February 16, 2018 21:35
Show Gist options
  • Save cyancey76/faa0d6408528174a53ceb035108b3f2a to your computer and use it in GitHub Desktop.
Save cyancey76/faa0d6408528174a53ceb035108b3f2a to your computer and use it in GitHub Desktop.
Output a list of numbers for copy/pasting into queries or whatever.
$startNumber = 1;
$endNumber = 250;
for( $i=$startNumber; $i <= $endNumber; $i++ ) {
echo $i . '<br/>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment