document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3.    <head>
  4.       <title>List dengan PHP</title>
  5.    </head>
  6. <body>
  7. <h2>Ini Daftarnya</h2>
  8.    <ol>
  9.       <?php
  10.       for ($i= 1; $i <= 10; $i++)
  11.          {
  12.             echo "<li>Daftar ke-$i</li>";
  13.          }
  14.       ?>
  15.    </ol
  16. </body>
  17. </html>
');