How to do the double-layer loop operation of for
WING
WING 2018-02-02 15:10:56
0
5
1461

Asking for code

WING
WING

reply all(3)
如风

Code screenshotQQ截图20180205171227.png

Screenshot of the effect after running:QQ截图20180205171312.png


I wonder if I can meet your requirements

  • reply Your numbers are all arranged in one line, and there is no way to break the line between the specified numbers.
    beautiful.tomrrow author 2018-05-04 17:40:04
清尘

What's the meaning? ?

for($i=0;$i<5;$i++)
{
echo "<br>";
for($j=0;$j<5;$j++)
{
echo $j;
}
}

Output

01234

01234

01234

01234

01234

The outer layer controls how many times the inner layer loops

刘昆明

<script>alert('你好')</script>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template