<?php for ($i = 1; $i <= 5; $i++) { echo "Line $i<br>"; } ?>
<?php $i = 1; while ($i <= 3) { echo "Number: $i<br>"; $i++; } ?>