How to print a star pattern in PHP embedded in HTML? -6

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:

  1. Input number of rows(i) to print from user given $num.
  2. To iterate through rows(i) run an outer loop from 0 to $num with for loop.
  3. To iterate through columns(j) run an inner loop form 1 to $i with for loop.
  4. After printing all columns(j) of a row move to next line.

Right Triangle Star Pattern coding:

Entering a number:

Input number is 6
Output of 6

Thanks