Example :-
<?php
$k=1;
for($i=0;$i<4; $i++)
{
for($j=0;$j<=$i;$j++)
{
echo $k. "";
$k++;
}
echo "<br>";
}
?>
php program to print number increasing pyramid
Output:-
Related Post :-
php program to print heart star pattern
Example:-
php program to print heart star pattern
Output :-
php program to print Hollow diamond star pattern
Example :-
php program to print Hollow diamond star pattern
Output:-
Related Post :-
php program to print hollow pyramid star pattern
php program to print hollow pyramid star pattern