Advertisement
theloserboy

Membuat Tabel Dengan PHP

Nov 12th, 2011
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <html>
  2. <head><title> Latihan PHP </title></head>
  3. <body>
  4. <table border="1">
  5. <?php
  6. echo"<br>";
  7. echo"<br>";
  8. for ($baris=1;$baris<=10;$baris++)
  9. {
  10. echo "<tr>";
  11. for ($kolom=1;$kolom<=10;$kolom++)
  12. {
  13. echo "<td align='center'>";
  14. echo "$baris,$kolom";
  15. echo "</td>";
  16. }
  17. echo"</tr>";
  18. }
  19. ?>
  20. </table>
  21. </body>
  22. </html>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement