Advertisement
dysphafiz_

Untitled

Oct 8th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Array Asosiatif (M. Hafidz Fadillah - XI RPL 2)</title>
  4.     <style type="text/css">
  5.         body {
  6.             color: lightgreen;
  7.             background-color: gray;
  8.             font-family: consolas;
  9.             font-size: 18px;
  10.         }
  11.     </style>
  12. </head>
  13. <body>
  14. <?php  
  15.     $siswa = array('1314115698' => 'Wanda', '1314115699' => 'Nakia', '1314115700' => 'Carol');
  16.  
  17.     foreach ($siswa as $nis => $nm_siswa) {
  18.         echo $nm_siswa.' memiliki NIS '.$nis.'<br>';
  19.     }
  20. ?>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement