document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Iman Nurohman</title>
  6.     <link rel="stylesheet" href="CSS.css">  </head>
  7.   <body>
  8. <div class="limiter">
  9. <div class="container">
  10. <?php
  11. //Iman Nurohman || XI RPL 1
  12. $nama = array(
  13.         $index = array("1314115690", "Bruce Banner", "MIF 1","MIF"),
  14.     $index =array("1314115692", "Stephen Strange", "MIF 2","MIF"),
  15.         $index = array("1314115693", "Matt Murdock", "MIF 3","MIF"),
  16.     $index = array("1314114799", "Peter Parker", "MIF 1","MIF")
  17.     );
  18.   echo "<table>
  19.        <tr>
  20.        <th>NIS</th>
  21.        <th>Nama</th>
  22.        <th>Kelas</th>
  23.        <th>Jurusan</th>
  24.        </tr>  ";
  25.   foreach ($nama as $siswa => $datadiri) {
  26.         foreach ($datadiri as $data => $isi) {
  27.           echo "<td>".$isi."</td>";
  28.         }
  29.         echo "</tr>";
  30.   }
  31.     echo "</table>";
  32.  ?>
  33.  </div>
  34.  </div>
  35. </body>
  36. </html>
');