example PHP: <?php$i=1;while($i<5) { $j=1 while($j<$i) { echo $j." "; $j++; } echo "<br>"; } out put would be 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1