
PHP for loop Exercises: Print alphabet pattern O
PHP for loop: Exercise-27 with Solution
Write a PHP program to print alphabet pattern 'O'.
Pictorial Presentation:

Sample Solution:
PHP Code:
<?php
for ($row=0; $row<7; $row++)
{
for ($column=0; $column<=7; $column++)
{
if ((($column == 1 or $column == 5) and $row != 0 and $row != 6) or (($row == 0 or $row == 6) and $column > 1 and $column < 5))
echo "*";
else
echo " ";
}
echo "\n";
}
?>
Sample Output:
*** * * * * * * * * * * ***
Flowchart :

PHP Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a PHP program to print alphabet pattern 'N'.
Next: Write a PHP program to print alphabet pattern 'P'.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming