Guest User

Untitled

a guest
Jan 12th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.     for ($i=1; $i<=5; $i++){
  3.         $utskrift = "";
  4.         for ($j=1; $j<=$i; $j++){
  5.             $copy .= $j . " ";
  6.         }
  7.         echo $copy . "<br>";
  8.     }
  9.     ?>
Add Comment
Please, Sign In to add comment