Skip to content

Instantly share code, notes, and snippets.

@wadap
Last active August 29, 2015 13:59
Show Gist options
  • Save wadap/10524047 to your computer and use it in GitHub Desktop.
Save wadap/10524047 to your computer and use it in GitHub Desktop.
<?php
for ($i = 1; $i<= 100; $i++) {
if ($i % 3 == 0 && $i % 5 == 0)
echo "fizz buzz";
} else if ($i % 3 == 0) {
echo "fizz";
} else if ($i % 5 == 0) {
echo "buzz";
} else {
echo $i;
}
echo "<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment