Created
December 6, 2016 06:33
-
-
Save ilhamarrouf/912fe6bae5e8bd4915325c83b7cc6d19 to your computer and use it in GitHub Desktop.
Data Type PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Nb : Value pada array dimulai dari 0 | |
| $contoh = array("value0","value1","value2","..."); | |
| //CONTOH | |
| //variabel yang berisi array | |
| $anggota = array("iqbal","ilham","farhan","cucu","syafi'i","febi","afri","labib"); | |
| //menampilkan array | |
| echo $anggota[1]; //output ilham | |
| echo "<br>"; | |
| echo $anggota[4]; //output syafi'i | |
| echo "<br>"; | |
| echo $anggota[7]; //output labib | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment