Loop For loop:
<html>
<body>
<?
for ($i = 1; $i < 5; $i++) {
?>
<font size= <? echo $i ?> >
Welcome </font> <br>
<? } ?>
</body>
It will be executed by the server and convert into this html code;
<html>
<body>
<font size= 1 > Welcome </font> <br>
<font size= 2 > Welcome </font> <br>
<font size= 3 > Welcome </font> <br>
<font size= 4 > Welcome </font> <br>
<font size= 5 > Welcome </font> <br>
</body>
</html>
While loop:
<?php
$i = 1;
while($i <= 5) {
echo "<font size= $i > Welcome </font> <br>"
$i++;
}
?>
The output is the same as the above sample of For loop.
|