You are on page 1of 5

4341604 Web Development using PHP 226370316054

Practical :- 7
Aim :- Write a PHP Script to show different looping structure.
4341604 Web Development using PHP 226370316054

OUTPUT:
4341604 Web Development using PHP 226370316054

Practical :- 7
Aim :- Write a PHP Script to show different looping structure.

 Using For Loop

<?php
echo"Using For Loop : -<br>";

for ($i = 0; $i < 5; $i++)


{
echo "Number: " . $i . "<br>";
}
?>

 Using While Loop

<?php
echo"Using While Loop : -<br>";
$i=0;
While ($i < 5)
{
echo "Number: " . $i . "<br>";
$i++;
}
?>
4341604 Web Development using PHP 226370316054

OUTPUT:
4341604 Web Development using PHP 226370316054

Practical :- 7
Aim :- Write a PHP Script to show different looping structure.

 Using Do..While Loop

<?php
echo"Using Do...While Loop : -<br>";
$i=0;
do
{
echo "Number: " . $i . "<br>";
$i++;
}
While ($i < 5)
?>

 Using for each loop

<?php
$colors = array("red", "green", "blue", "yellow");

foreach ($colors as $x)


{
echo "$x <br>";
}
?>

You might also like