Advertisement
Thelz

ArrayAsosiatif

Oct 9th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.     $siswa = array('1234567890' => 'Loki', '1234567891' => 'Thor', '1234567892' => 'Odin');
  3.  
  4.     echo $siswa['1234567890']. '<br>';
  5.     echo $siswa['1234567891']. '<br>';
  6.     echo $siswa['1234567892'];
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement