Skip to content

Instantly share code, notes, and snippets.

@pensiero
Created February 25, 2015 17:45
Show Gist options
  • Save pensiero/92d13203d1bf3d82871e to your computer and use it in GitHub Desktop.
Save pensiero/92d13203d1bf3d82871e to your computer and use it in GitHub Desktop.
<?php
function printOdds() {
$i = 0;
while ($i <= 100) {
if ($i % 2 != 0) {
echo $i . " ";
}
$i++;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment