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

Friday, May 31, 2024

php program to print increasing triangle

php program to print increasing triangle 


php program to print increasing triangle


php program to print increasing triangle  

Example :-

<?php
for($i=0;$i<=5;$i++){
for($j=1;$j<=$i;$j++){
echo "*";
}
echo '<br>';
}
?>

php program to print increasing triangle  

Output:-

php program to print increasing triangle


php program to print increasing triangle 

Example :- 

<?php
for($i=0;$i<=5;$i++){
for($j=1;$j<=$i;$j++){
echo "A";
}
echo '<br>';
}
?>

php program to print increasing triangle  

Output:-

right half pyramid in php program,php program to print increasing triangle,


Related Post:-

inverted pyramid star pattern in php

left pascal star pattern in php

php program to print alphabet pattern C 

php program to print alphabet pattern j

php program to print alphabet pattern m

square pattern in php

reverse right half pyramid in php