Random image

hi

is something wrong with this code

 
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
	   <title>Random!</title>
</head>
<body>
<?php
$file_array = array
('http://www.koddinn.com/prufa/random/1.jpg',
'http://www.koddinn.com/prufa/random/2.jpg',
'http://www.koddinn.com/prufa/random/3.jpg',
'http://www.koddinn.com/prufa/random/4.jpg',
'http://www.koddinn.com/prufa/random/5.jpg',
$total = count($file_array);
$random = (mt_rand()%$total);
$file = "$file_array[$random]";
print("<img src=$file></a>");
?>
</body>
</html>

i get this error
Parse error: parse error, unexpected ‘;’, expecting ‘)’ in /home/koddinn/public_html/prufa/random/random.php on line 14

you have a comma at the end of the 5.jpg line and i don’t see another element following it so you’d better close the array there

DOHHHHH
stupid me, of course…thx