Advertisement
dysphafiz_

Untitled

Oct 8th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Array Asosiatif (M. Hafidz Fadillah - XI RPL 2)</title>
  5.     <style type="text/css">
  6.         body {
  7.             background-color: blanchedalmond;
  8.             font-family: comic sans ms;
  9.             font-size: 18px;
  10.             color: indianred
  11.         }
  12.     </style>
  13. </head>
  14. <body>
  15. <center>
  16. <?php
  17.     $siswa = array('1314115698' => 'Loki', '1314115699' => 'Thor', '1314115700' => 'Stephen');
  18.  
  19.     echo $siswa['1314115698'].'<br>';
  20.     echo $siswa['1314115699'].'<br>';
  21.     echo $siswa['1314115700'];
  22. ?>
  23. </center>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement