Jump to content

Nested Loops


jbw

Recommended Posts

Hi,

 

I hope you can help with the issue below.

 

I'm trying to create a nested loop to output numbers as listed below but I can't get it to work correctly?

 

ie.

 

1

12

123

1234

12345

 

 

$count =1;
for ($row = 0; $row <=4; $row++)
{
for ($num = 0; $num <=$row; $count++){


echo "";
}
echo "<br>";
}

 

 

Regards,

 

James.

 

 

Link to comment
https://forums.phpfreaks.com/topic/287050-nested-loops/
Share on other sites

Add an array:

 

$sz=array("10px","12px","14px","16px","18px");

 

Then in your $row loop add this :

 

echo "<span style='font-size:${sz[$row]}>";

 

At the end of the $col loop, add this to the newline echo:

"</span>";

 

Be sure you keep things enclosed in the proper loops.

Link to comment
https://forums.phpfreaks.com/topic/287050-nested-loops/#findComment-1472996
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.