Q:

PHP program to print alphabet pattern ‘K’

belongs to collection: All star pattern programs in PHP

0
 *   *                                                      
 *  *                                                       
 * *                                                        
 **                                                         
 * *                                                        
 *  *                                                       
 *   *                                                      
 *    * 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
$a = 5;    
$b = 0;  
for ($row=0; $row<=7; $row++)
{
    for ($column=0; $column<=7; $column++)
      {
        if ($column == 1 or (($row == $column + 1) and $column != 0))
            echo "*";   
        else if ($row == $b and $column == $a)
           {  
              echo "*";    
              $b=$b+1;  
              $a=$a-1;
           }
        else
            echo "&nbsp ";   
}    
     echo "<br>";    
}
?>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
PHP program to print alphabet pattern ‘L’... >>
<< PHP program to print alphabet pattern ‘J’...