ad

Sunday, June 2, 2024

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

No comments:

Post a Comment