Jump to content

Insert image problem


Sniffy

Recommended Posts

Ok, on my expiriment I am trying to load images by putting their urls in a text file.Screenshots.php

<?$filename = "screenshots.txt";$fileopen = fopen($filename, "r");$fileread = fread($fileopen, filesize($filename));$arr = split(" + ", $fileread);$ac = count($arr);for($i = 0; $i < $ac; $i++){  echo "<img src='".$arr[i]."' /><br /><br />";}fclose($fileopen);?>

screenshots.txt

http://img207.imageshack.us/img207/127/elb3r3th14px4.jpg + http://http://img151.imageshack.us/img151/5935/kyallanaandnamoor1ek5.jpg

how come it won't display my images?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...