Write PHP script to display the following star output: ****** **** *** ** *

****** 
**** 
*** 
** 
*

Following Php Code Can be written for the above pattern

(star.php)

 <?php
echo "Star pattern is as follows","<br>";
for($i=1;$i<=5;$i++) { 
 for($j=5;$j>=$i;$j--) { 
     echo "*";
  }
   echo "<br>";
 }
?>

Output



Comments