HR's halfVAST Fizz Buzz

Fizz Buzz is a game used as an aid in teaching children about division.  In addition, writing code to implement an automated version of Fizz Buzz has become a popular test of basic computer programming skills.  Subject matter experts say that if one cannot write a basic Fizz Buzz program in 15 minutes or so, chances are their coding skills are probably somewhat lacking.

The following is the output of a Fizz Buzz program I developed using Object Oriented Programming features of PHP, a scripting language typically used in conjunction with HTML to develop web sites.  Three (3) and five (5) are the values used in the original Fizz and Buzz game.  This program allows use of any integer value from 1 to 100 for Fizz and Buzz.  Feel free to give it try!!