Practical No 3 (WBP) 04
Practical No 3 (WBP) 04
Roll no: 04
Batch: C1
Practical no: 3
Output:
b) Do-while statement
<html>
<head>
<title>hello</title>
</head>
<body>
<?php
$num=2;
$i=1;
echo"Table of $num is: <br>";
do
{
$table=$num*$i;
echo"$table<br>";
$i++;
}while($i<=10);
?>
</body>
</html>
Output:
c) For statement
<html>
<head>
<title>Hello</title>
</head>
<body>
<?php
echo"Even numbers from 1 to 50: <br>";
for($i=1;$i<=50;$i++)
{
if($i%2==0)
{
echo"$i<br>";
}
}
?>
</body>
</html>
Output:
d) Foreach statement
<html>
<head>
<title>Hello</title>
</head>
<body>
<?php
$x=array("Blue","Red","Yellow","Green","Pink");
foreach($x as $y)
{
echo"$y<br>";
}
?>
</body>
</html>
Output: