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