Showing posts with label php program to print triangle pattern. Show all posts
Showing posts with label php program to print triangle pattern. Show all posts

Friday, May 31, 2024

php program to print triangle pattern

 

php program to print triangle pattern

php program to print triangle pattern


php program to print triangle pattern

Example :-

<?php
//Star Pyramid Size
$size = 7;
for($i=1;$i<=$size;$i++){
    for($j=1;$j<=$size-$i;$j++)
    {
        echo "&nbsp;&nbsp;";
    }
    for($k=1;$k<=$i;$k++){
             
        echo "*&nbsp;&nbsp;";
    }
echo "<br />";
}
?>

php program to print triangle pattern

Output:-

php program to print triangle pattern


Related Post :-

print half diamond pattern

print diamond pattern program php

square pattern in php

reverse right half pyramid in php

left pascal star pattern in php

inverted pyramid star pattern in php