Q:

PHP program to print alphabet pattern ‘Z’

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
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>";
}
?>

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 ‘C’... >>
<< PHP program to print alphabet pattern ‘Y’...