document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3.     <title>Pengulangan Tag Html</title>
  4. </head>
  5. <body>
  6. <table border="1" cellpadding="10" cellspacing="0">
  7.     <?php
  8.         for ($baris=0; $baris < 4; $baris++) {
  9.             echo "<tr>";
  10.             for ($kolom=0; $kolom < 5; $kolom++) {
  11.                 echo "<td>($baris,$kolom)</td>";
  12.             }
  13.             echo "</tr>";
  14.         }
  15.     ?>
  16.    
  17. </table>
  18. </body>
  19. </html>
');