/ Published in: PHP
Beginner PHP Chapter 5 - Arrays
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php echo($array[0]); //This will display the string 'dolphin'. echo $array[1]; //This will display the string 'llama'. ?>