Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7047207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:44:35+00:00 2026-05-28T02:44:35+00:00

I followed a few sites and have come to this: <?php $imagesDir = base_url()

  • 0

I followed a few sites and have come to this:

<?php
  $imagesDir = base_url() . 'images/eventGallery/';

  $files = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE);

  for ($i = 0; $i < count($files); $i++) { 
    $num = $files[$i];
    echo '<img src="'.$num.'" alt="random image">'."&nbsp;&nbsp;";
  }

?>

It is not working as nothing is displaying! What am I doing wrong? There are two images in said directory, with ,jpg extension.

Thanks for any assistance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:44:36+00:00Added an answer on May 28, 2026 at 2:44 am
    1. What does your base_url() returns? Do you have slash(‘/’) between base url and images?
    2. case-sensitivity of glob is different on various systems, do your pictures have jpg or JPG or Jpg (etc) extensions?
    3. when creating img tags you must transform paths from file-system to web path (relative from web root)
    4. remove count from loop

    This is working version of your code (altough I would rather use readdir 🙂 ):

    define('BASE_URL', dirname(__FILE__));
    
    $imagesDir = BASE_URL . '/images/eventGallery/';
    
    $files = glob($imagesDir . '*.{jpg,jpeg,png,gif,JPG,JPEG,PNG,GIF}', GLOB_BRACE);
    
    $len=count($files);
    for ($i = 0; $i < $len; $i++)
    { 
        $num = $files[$i];
    
        // transform from file system path to web path - assuming images is in the web root
        $num = substr($num, strlen(BASE_URL) ); 
    
        echo '<img src="'.$num.'" alt="random image">'."&nbsp;&nbsp;";
    }
    

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't have experience in php. I've followed a few tutorials to modify my
I followed this link to gzip my php driven website It's working fine but
I am beginning in iPhone development and have followed a few tutorials, but please
In one PHP file, I have this code: require_once $_SERVER['DOCUMENT_ROOT'] . '/custom/functions.php'; global $testVar;
I followed a few examples that I found (i.e. - http://www.jqplot.com/tests/rotated-tick-labels.php ), but I
I have followed a few online tutorials and managed to install custom item templates
I have an IDL file that defines a few interfaces followed by a coclass.
I have followed quite a few question around here on how to set the
I am starting a simple .NET project with FluentNhibernate . I've followed few examples
Followed this question about delayed_job and monit Its working on my development machine. But

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.