Showing posts with label left half pyramid program in code. Show all posts
Showing posts with label left half pyramid program in code. Show all posts

Friday, May 31, 2024

php program to print left half pyramid star pattern

 php program to  print left half pyramid 

php program to  print left half pyramid

php program to  print left half pyramid 

Example :-

<?php
for($i=1;$i<=5;$i++)
{
for($j=4;$j>=$i;$j--)
{
    echo "&nbsp;&nbsp;";
}
for($k=1;$k<=$i;$k++)
{
    echo '*';
    //change only value of the
    //echo' *';
    //for example :- 1,s,q,h,a,A....etc
}
echo '<br>';
}
?>

php program to  print left half pyramid 

Output:- 

php program to  print left half pyramid


Related  Post :-

print triangle pattern php program

PHP program to print Alphabet Pattern K 

square pattern in php

reverse right half pyramid in php

left pascal star pattern in php

inverted pyramid star pattern in php

print half diamond pattern

print diamond pattern program php