Build a PHP Multiple Picture Showcase Using PHP and HTML

Share this article

I recently decided to create a showcase for one of my sites. I needed a row of five thumbnail images of my products, randomly displayed. I thought it would be easy to find this PHP code, but this turned out not to be the case, so I rolled up my sleeves and wrote my own. The result is a new way (at least, to me) of rotating images — I hope you’ll find it as useful as I did.

The problem was that I didn’t really want a random display. I wanted random, but without duplicates. I had about 25 images, so the chance of repeat images in a row of five was pretty good — and would be pretty unprofessional!

To further complicate the situation, I wanted to avoid using a PHP page (which would have simplified things immensely), and instead, call a PHP script from within my HTML code, something like this:

<img src="mysite.com/rotate.php?i=0" /> 
<img src="mysite.com/rotate.php?i=1" />
<img src="mysite.com/rotate.php?i=2" />

Using a parameter like '?i=0' provides a way to distinguish the calls from one another. It will be the key to avoiding duplicate images.

An Easy Solution: a PHP Page

If I was to use a PHP page, the code would be extremely simple: just take an array of image URLs, shuffle that array, then ‘deal them out’, displaying entry 0 first, then 1, then 2, and so on, like this:

<?php 
// display a series of random images - PHP form solution
// (c) 2004 David Pankhurst - use freely, but please leave in my credit
$images=array( "img1.gif","img2.gif","img3.gif","img4.gif","img5.gif"  );
srand(time());
shuffle($images);
for ($i=0;$i<5;++$i) // display my five images
 echo "<a href='$images[$i]'>image $i</a><br>";
?>

But, as I needed occasionally to use an HTML form instead of PHP, I decided a PHP call from within an HTML page would be better, though this made the problem harder to solve.

The reason is that the code above is all done at once. Requests to PHP scripts are largely stateless (barring PHP sessions, which are impractical in this instance). This makes it difficult to call a script five times (once for each image), and get the same ‘state’ (shuffled order) back. But the alternative was for the images to be completely random, in which case I’d end up with duplicates.

The Better Option: srand()

To solve this problem, I used a solution much like that shown above for a single PHP script: I created a shuffled array. But this time I used the query string parameter passed (i=0, i=1, etc.) as the index to the array, to determine which picture to display.

To keep this array stable between calls, I needed a pseudo-random value, which was provided by PHP and its seeded random function, srand().

PHP’s random numbers, although random enough for most uses, are not random at all — they’re based on a seed value. This means that, if you use the same seed value each time, the sequence of ‘random’ numbers it generates will be the same. This repeatability made this function ideal for my needs, which included a shuffled image list that stayed the same for long periods of time. By seeding with the same number each time, and shuffling the list with those numbers, my array would be in the same ‘random’ order each time.

In this case, I used time() as the seed value for each call. Dividing it by 10 gave me a seed value that changed once every ten seconds, which meant that the array would stay shuffled in the same order for 10 seconds at a time.

The result is that the array appears random, but the order stays static long enough for the five PHP calls to occur — each selecting a different image from the list.

Here’s the new code:

<?php 
// rotate images randomly but w/o dups on same page - format:
// <img src='rotate.php?i=0'> - rotate image #0 - use 'i=1'
// for second, etc
// (c) 2004 David Pankhurst - use freely, but please leave in my credit
$images=array( // list of files to rotate - add as needed
 "img1.gif",
 "img2.gif",
 "img3.gif",
 "img4.gif",
 "img5.gif" );
$total=count($images);
$secondsFixed=10; // seconds to keep list the same
$seedValue=(int)(time()/$secondsFixed);
srand($seedValue);
for ($i=0;$i<$total;++$i) // shuffle list 'randomly'
{
 $r=rand(0,$total-1);
 $temp =$images[$i];
 $images[$i]=$images[$r];
 $images[$r]=$temp;
}
$index=(int)($_GET['i']); // image index passed in
$i=$index%$total; // make sure index always in bounds
$file=$images[$i];
header("Location: $file"); // and pass file reference back
?>

The shuffle() function has now been replaced by my own shuffle loop, partly because I wasn’t happy with the output of shuffle() in this case, and partly because I wanted to make sure ‘my’ list of random numbers was always used to shuffle the array (the key to keeping it repeatable).

Using The Code in Your Application

To use this code, you’ll need to do the following:

  1. Replace the entries in $images with your own (including the path as needed).

  2. Change the $secondsFixed to decide for how long the list will stay the same before it’s reordered. The timeframe should be large enough to allow all the PHP calls to be made easily within the time allotted.

  3. Upload the script, and call it from your HTML like this:

    <img src='mysite.com/rotate.php?i=0'>image #1 
    <img src='mysite.com/rotate.php?i=1'>image #2
    <img src='mysite.com/rotate.php?i=2'>image #3

    and so on…

Of course, if you have more calls than images in the array, it will wrap around; otherwise, you will get random, non-duplicating images.

One note: setting the $secondsFixed value to 10 ensures that the random list reorders every ten seconds. So, if the PHP calls for a page straddle this boundary — some within a ten second boundary, some outside it — the list could still be poorly randomized. To avoid this, you can increase the value. For instance, at 3600, the list will stay the same for an hour, and it’s the rare page load that will cross that boundary exactly.

Aside from that small hitch, this is a useful PHP technique that allows me to show a randomly-selected series of images without duplicates. I’ve already placed it successfully on one of my sites, as well as a client’s eBay auction (to ‘freshen’ the display from time to time). I hope it can prove useful to you as well.

Frequently Asked Questions (FAQs) about PHP and HTML Picture Showcase

How can I create a dynamic image gallery using PHP and HTML?

Creating a dynamic image gallery involves several steps. First, you need to create a database to store your images. You can use MySQL for this. Then, you need to create a form in HTML that allows users to upload images. This form should include an input field for the image file and a submit button. Once the form is submitted, you need to write a PHP script that takes the uploaded image, moves it to a specific directory on your server, and stores its information in the database. Finally, you need to write another PHP script that retrieves the images from the database and displays them on your website.

How can I resize images using PHP?

PHP has a built-in function called imagecopyresampled() that can be used to resize images. This function takes an image resource, resizes it, and copies it to a new image resource. You can use this function in combination with the getimagesize() function, which retrieves the original dimensions of the image, to calculate the new dimensions and maintain the aspect ratio of the image.

How can I add pagination to my image gallery?

Pagination can be added to your image gallery by dividing the total number of images by the number of images you want to display per page. This will give you the total number of pages. You can then create links for each page and use the LIMIT clause in your SQL query to retrieve the correct images for each page.

How can I add a lightbox effect to my image gallery?

A lightbox effect can be added to your image gallery using JavaScript and CSS. There are many libraries available that can help you achieve this, such as Lightbox2 and Fancybox. These libraries provide a simple way to overlay images on top of the current page, creating a “lightbox” effect.

How can I add captions to my images?

Captions can be added to your images by storing them in your database along with the image information. When you retrieve the images from the database, you can also retrieve the captions and display them underneath the images using HTML and CSS.

How can I allow users to search for images in my gallery?

You can allow users to search for images by creating a search form in HTML and a PHP script that retrieves the images from the database based on the search query. The search query can be matched against the image information stored in the database, such as the filename or a description.

How can I optimize my image gallery for performance?

There are several ways to optimize your image gallery for performance. One way is to resize your images before uploading them to the server. This reduces the file size and speeds up the loading time. Another way is to use pagination to limit the number of images displayed per page. This reduces the amount of data that needs to be loaded at once.

How can I make my image gallery responsive?

You can make your image gallery responsive by using CSS media queries. These allow you to apply different styles depending on the size of the user’s screen. For example, you can adjust the number of images displayed per row or change the size of the images.

How can I add a slideshow feature to my image gallery?

A slideshow feature can be added to your image gallery using JavaScript. There are many libraries available that can help you achieve this, such as jQuery Cycle and FlexSlider. These libraries provide a simple way to cycle through your images automatically.

How can I protect my images from being downloaded?

While it’s impossible to completely prevent users from downloading your images, there are some measures you can take to make it more difficult. One way is to disable right-clicking on your images using JavaScript. Another way is to overlay a transparent image over your images using CSS. This prevents users from right-clicking and saving the image directly.

David PankhurstDavid Pankhurst
View Author

As a programmer and developer, David Pankhurst was first drawn to the Open Source program WordPress in 2004. Since 2006, he's been running a WordPress membership site at ActiveBlogging where he explains the ins and outs of blogging, programming, marketing, and of course, WordPress.

Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week
Loading form