Advertisement
Guest User

Table

a guest
Oct 18th, 2017
61
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. $width = 10;
  3. $height = 3;
  4.  
  5. for($y = 0; $y < $height; $y++) {
  6.     for($x = 0; $x < $width; $x++) {
  7.         echo(($y + 1) * 10 + $x * 2);
  8.         echo('|');
  9.     }
  10.     echo('
  11. ');
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement