Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created December 6, 2016 06:33
Show Gist options
  • Save ilhamarrouf/912fe6bae5e8bd4915325c83b7cc6d19 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/912fe6bae5e8bd4915325c83b7cc6d19 to your computer and use it in GitHub Desktop.
Data Type PHP
<?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