Jump to content
Larry Ullman's Book Forums

Recommended Posts

I want to display images on my page from a folder called forumimages.

Right now it is just showing broken images. I have tried changing the directory and it doesn't work.

My images are in the folder and they are jpegs.

Here is the code.

 

$directory = "../../forumimages/";

//get all image files with a .jpg extension.
$images = glob($directory . "*.jpg");

//print each file name
foreach($images as $image)
{
echo '<img src="' . $directory . '/' . $image . '" />';
}

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...