Source Code:
(back to article)
<?php $i = 1; do { echo $i; $i++; } while ($i <= 10); ?>
Result:
Report an issue