Note: There is a problem displaying html character codes within this page so < and > may have an additional space after it.
< html>
< head>
< title> PHP fizzbuzz page </title>
</head>
< body>
< ?php
$inx = 0;
while ($inx++ < 100) {
echo $inx;
if ( ( $inx % 3 ) == 0 )
echo " fizz";
if ( ( $inx % 5 ) == 0 )
echo " buzz";
echo "< br>"
}
?>
</body>
</html>