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
Share on other sites

Hi ,

 

No limits, just to produce the outcome of >>>

 

1

12

123

1234

12345

 

here is a close working example>>

 

for ($row = 1; $row <= 5; $row++) {
for ($col = 1; $col <= $row; $col++) {
echo '*'; }
echo "\n"; }

 

Thanks,

 

Regards.

Link to comment
Share on other sites

Perfect!!!!!  thanks.

 

I was wondering if you could help again in relation to the same output but this time modify the code to make the numbers smaller from 1 and biggest at 5.

 

>>>

 

1

12

123

1234

12345

 

Regards.

Edited by jbw
Link to comment
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.