xxxxxxxxxx
<?php
//print star pattern in php
for($i=1; $i<=5; $i++)
{
for($j=0;$j<$i;$j++){
print " $i ";
}
print "\n";
}
?>
Output:
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
xxxxxxxxxx
<?php
for ($i=0; $i<=5; $i++){
for($j=0; $j<=$i; $j++){
print "* ";
}
print "\n";
}
?>
O/P:
*
* *
* * *
* * * *
* * * * *
* * * * * *
xxxxxxxxxx
<?php
for ($i=1; $i<=5; $i++)
{
for ($k=5; $k>$i; $k--)
{
//print one space throgh html ;
echo " ";
}
for($j=1;$j<=$i;$j++)
{
echo "*";
}
echo "<br/>";
}
?>