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