Advertisement
Guest User

xD

a guest
Mar 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <html>
  2. <body>
  3. <table>
  4. <?php
  5. $n = 10;
  6.  
  7. for ( $i = 0; $i <= $n; $i++ )
  8. {
  9. echo "<tr>";
  10.  
  11. for ( $j = 0; $j <= $n; $j++ )
  12. {
  13. echo "<td>";
  14.  
  15. echo $j;
  16.  
  17. echo "</td>";
  18. }
  19.  
  20. echo "</tr>";
  21. }
  22. ?>
  23. </table>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement