Return to Snippet

Revision: 59462
at September 9, 2012 21:45 by ashmenon


Initial Code
<?php

$array = array('dolphin','llama');
echo($array[0]);  //This will display the string 'dolphin'.
echo $array[1]; //This will display the string 'llama'.


?>

Initial URL


Initial Description
Beginner PHP Chapter 5 - Arrays

Initial Title
Beginner PHP Chapter 5 - Arrays - Code Block 5

Initial Tags


Initial Language
PHP