php program to print Alphabet pattern s

 

php program to print Alphabet pattern s

php program to print Alphabet pattern s

Example :-

<?php

for($row=0; $row<7; $row++)
{
       for ($column=0; $column<=7; $column++)
    {
       if((($row==0 or $row==3 or $row==6)
       and $column>1 and $column <5) or
($column==1
    and ($row==1 or $row==2 or $row==6))or
    ($column==5 and ($row==0 or $row==4 or
$row==5)))
       
       
        echo "*" ;  
        else  
        echo "&nbsp; ";
    }
    echo"<br>";
}
?>

 

php program to print Alphabet pattern s

Output :-

php program to print Alphabet pattern s

Related Post :-

javascript arithmetic operators

forgot password form

php program print square number pattern

Comments

Popular posts from this blog

HTML pre tag

Inline css in html

how to add background image in html.

css id selector

CSS text-emphasis-color Property