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

Sample Solution:
PHP Code:
<?php
for ($row=0; $row<7; $row++)
{
for ($column=0; $column<=7; $column++)
{
if ($column == 1 or ($row == 6 and $column != 0 and $column < 6))
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 'K'.
Next: Write a PHP program to print alphabet pattern 'M'.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming