Showing posts with label alphabet pattern programs in php. Show all posts
Showing posts with label alphabet pattern programs in php. Show all posts

Wednesday, May 29, 2024

PHP Program to print Alphabet Pattern M

PHP Program to print Alphabet Pattern M

PHP Program to print Alphabet Pattern  M

PHP Program to print Alphabet Pattern  M

Example  :-

<?php
echo "<pre>";
$j=22;
for ( $row =0; $row <=10; $row++){
    for($col=0;$col<=22; $col++){
        if($col==$j){
            echo "M";
            $j= $j-1;
            }
            if($col==0 OR $col==22 OR $row
==$col-1)
              {  echo"M";
            }
            else {
                echo "&nbsp;";
        }
    }
   
    echo"</br>";
}
echo "</pre>";
?>


PHP Program to print Alphabet Pattern  M

Output :-

PHP Program to print Alphabet Pattern  M


Related  Post :-

php program to print alphabet pattern j

php program to print alphabet pattern l

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 B