PHP program to print alphabet pattern H
In this article write a PHP program to print alphabet pattern H. This Program first takes the numbers of rows and then prints pattern using nested for loops.
PHP program to print alphabet pattern H
<?php echo "<pre>"; for ($row=0; $row<11; $row++) { for ($col=0; $col<=11; $col++) { if (($col == 1 OR $col == 9) OR ($row == 5 AND $col > 1 AND $col < 10)){ echo "*"; } else { echo " "; } } echo "<br/>"; } echo "</pre>"; ?>