Skip to content

Instantly share code, notes, and snippets.

Created October 20, 2013 15:33
Show Gist options
  • Save anonymous/7071149 to your computer and use it in GitHub Desktop.
Save anonymous/7071149 to your computer and use it in GitHub Desktop.
<?php
$b=99;
while($b>=1)
echo $b.' bottles of beer on the wall, '.$b.' bottles of beer.<br>Take one down and pass it around, '.--$b.' bottles of beer on the wall<br>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment