How to make the number pyramid in PHP

How to make the number pyramid in PHP

In this program, I will let you know the simple process to draw number pyramid in PHP using for loop.

PHP for loop execute a block of code for specified number of times.

Using for or foreach loop to draw/make number pyramid is much easier.

I am using for loop to draw/make number pyramid because of it is easier to understand that how many rows i have to iterate.

Number Pyramid
  1. for($i=0;$i<=9;$i++){
  2. for ($d=10-$i; $d > 0; $d--) {
  3. echo "&nbsp;&nbsp;";
  4. }
  5. for($j=1;$j<=$i;$j++){
  6. echo "&nbsp;".$i."&nbsp;";
  7. }
  8. echo "<br>";
  9. }

Phone: (+91) 8800417876
Noida, 201301
Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access ressim.net

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.