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