Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Created June 8, 2019 23:31
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 flaviors200/8174a28d2c43056e8c4ae8651e479033 to your computer and use it in GitHub Desktop.
Save flaviors200/8174a28d2c43056e8c4ae8651e479033 to your computer and use it in GitHub Desktop.
Loop statements: while
<?php
$money = 10;
while ($money > 0) {
echo "Valore di \$money = $money\n";
$money--;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment