I am trying to learn PHP from a book and I have got stuck and I dont know enough yet to figure it out.
I get an error Fatal error: Cannot use [] for reading in C:\wamp\www\includes\random_image.php on line 4
from this code
[php]<?php
$images = array(‘kinkakuji’, ‘maiko’, ‘maiko_phone’, ‘monk’, ‘fountains’, ‘ryoanji’, ‘menu’, ‘basin’);
$i = rand(0, count($images)-1);
$selectedImage = “images/{$images[$i]}.jpg”;[/php]
Any ideas?