Showing posts with label php tutorial learn programming language. Show all posts
Showing posts with label php tutorial learn programming language. Show all posts

Wednesday, June 5, 2024

php program to print alphabet pattern D

   
php program to print alphabet pattern D













php program to print alphabet pattern D




Example :-



<?php
//loop for rows
echo "<pre>";
for($row=0;$row<11; $row++){
//loop for column
    for($col=0;$col<=11;$col++)
    {
//condition to determine print echo '*'
        if($col==1 or (($row==0 or $row==10 )and
        ($col>1 and $col<9)) or ($col==9
and $row !=0 and $row !=10))
        {
                 echo "*";
           }
           else {
            echo "&nbsp;";
           }
    }  
    echo "<br>";
}
echo "</pre>";
?>


php program to print alphabet pattern D

Output :-

php program to print alphabet pattern D


Related Post :-