Q:

PHP program to print alphabet pattern ‘W’

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 ((($column == 1 or $column == 5) and $row < 6) or (($row == 5 or $row == 4) and $column == 3) or ($row == 6 and ($column == 2 or $column == 4)))   
            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 ‘X’... >>
<< PHP program to print alphabet pattern ‘V’...