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

html element tag

html table border

css introduction

Comments

Popular posts from this blog

What Is CSS Text Color in 2026

CSS Padding Property Explained

CSS Outline Color Property in 2026