Showing posts with label php tutorial. Show all posts
Showing posts with label php tutorial. Show all posts

Sunday, June 2, 2024

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 :-

PHP Program to print Alphabet Pattern P

PHP Program to print alphabet pattern Q

PHP Program to print Alphabet Pattern A

php program to print alphabet pattern F

php program to print Alphabet pattern y

 

php program to print Alphabet pattern y

php program to print Alphabet pattern y

Example :-

<?php

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

php program to print Alphabet pattern y

Output :-

php program to print Alphabet pattern y


Related Post :-

 

php program to print alphabet pattern F

PHP Program to print Alphabet Pattern G

PHP Program to print Alphabet Pattern O

PHP Program to Print Alphabet Pattern H

php program to print Alphabet pattern Z

 

php program to print Alphabet pattern Z

php program to print Alphabet pattern Z

Example :-

<?php

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

php program to print Alphabet pattern Z

Output :-

php program to print Alphabet pattern Z


Related Post :-


php program to print alphabet pattern m

square pattern in php

reverse right half pyramid in php

left pascal star pattern in php

inverted pyramid star pattern in php

print half diamond pattern

print diamond pattern program php