PHP Program to print Alphabet Pattern Q

 PHP Program to print Alphabet Pattern Q

PHP Program to print Alphabet Pattern Q


Example :-

 <?php
 echo "<pre>";
 for($row=0; $row<11;$row++){
    for($col=0; $col<=11; $col++)
    {
        if(($col==1 AND $row !=0 AND $row !=10)OR($row ==0 AND $col>1 AND $col <9)OR
($col==9 AND $row !=0 AND $row !=9)OR ($row == 10 AND $col>1 AND $col<8)OR
($col==$row -1 AND $row > 5)){
            echo "*";
        }
        else {
            echo "&nbsp;";
            }
        }
            echo "<br>";
    }
    echo "</pre>";
 
 ?>

 PHP Program to print Alphabet Pattern Q

Output :-

php program to Q pattern


Related Post 

features of javascript

php program to print half diamond pattern

how to create login form in php

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

HTML Input Type Submit Syntax and Example