<html>
<body>
<?php
function loop($a){
$a=0;
while($a<=5){
echo "hello<br>";
$a++;
}
}
loop();
?>
</body>
</html>
hello
hello
hello
hello
hello
<html>
<body>
<?php
function operators($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l){
$a=1;
$b=2;
$c=$a+$b;
$d=5;
$e=2;
$f=$a-$b;
$g=7;
$h=2;
$i=$a*$b;
$j=1;
$k=2;
$l=$a/$b;
echo $c;
echo $f;
echo $i;
echo $l;
}
operators();
?>
</body>
</html>
output:-
The salarie of Vanquish is700000The salarie of Prabhpreet is10000The salarie of Gursharan is600000