How to print a star pattern in PHP?
What is star pattern?
Star Pattern is the series of such character like (*) or another characters can be used to print to create geometrical shapes.
Logic:
- Input number of rows(i) to print from user given $num.
- To iterate through rows(i) run an outer loop from 0 to $num with for loop.
- To iterate through columns(j) run an inner loop form 1 to $i with for loop.
- After printing all columns(j) of a row move to next line.
Right Triangle Star Pattern coding:
Entering a number:
Thanks
PHP Fundamental Tutorials with Basic Demo by Chentan in 2020 – Part-1
PHP Fundamental Tutorials with Basic Demo by Chentan in 2020 – Part-2
Latest posts by Usha Kiran (see all)
- How to Login with Token in Laravel PHP Framework? - October 30, 2021
- How to merge two or multiple tables to each other in the Laravel PHP Framework? (Part-4) - October 29, 2021
- How to display a table in a Verticle or Horizontal form in the Laravel PHP Framework? Part-2 - October 29, 2021