This repository contains a classic PHP problem where it is necessary to print all the numbers from 1 to 100, while making an important substitution:
- All multiples of the number 3 are replaced with the word "Fizz".
- All multiples of the number 5 are replaced with the word "Buzz".
- All multiples of the number 15 are replaced by the word "FizzBuzz".
This was done using a PHP while loop.
To check how it looks, click on the preview and then on the green run button.