Skip to content

Instantly share code, notes, and snippets.

@NemanyaM
Created December 14, 2016 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NemanyaM/eb9176703b6bbcebeea11ce22212072a to your computer and use it in GitHub Desktop.
Save NemanyaM/eb9176703b6bbcebeea11ce22212072a to your computer and use it in GitHub Desktop.
FizzBuzz solution in PHP
for ($i = 1; $i <= 100; $i++)
{
if($i % 3 == 0 && $i % 5 ==0){
echo "FizzBuzz<br />";
}
else if($i % 3 == 0){
echo "Fizz<br />";
}
else if($i % 5 == 0){
echo "Buzz<br />";
}
else {
echo $i."<br />";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment