Source Code:
(back to article)
<?php $i = 0; while ($i < 10) { echo "The number is $i \n"; $i++; } ?>
Result:
Report an issue