advanced code snippet search
ashmenon on 09/09/12
09/09/12 09:45pm
Beginner PHP Chapter 5 - Arrays
<?php $array = array('dolphin','llama');echo($array[0]); //This will display the string 'dolphin'.echo $array[1]; //This will display the string 'llama'. ?>
Report this snippet Tweet
Comment:
You need to login to post a comment.