Created
February 16, 2018 21:35
-
-
Save cyancey76/faa0d6408528174a53ceb035108b3f2a to your computer and use it in GitHub Desktop.
Output a list of numbers for copy/pasting into queries or whatever.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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