Magento 2, Magento Development, Customization, Extension Development and Integration, Optimization, SEO and Responsive Design

Magento 2, Magento Development, Customization, Extension Development and Integration, Optimization, SEO and Responsive Design
Showing posts with label image change. Show all posts
Showing posts with label image change. Show all posts

PHP script to change images on page refresh

In this tutorial i am going to show you how to change images dynamic on each time you refresh your page.
There is simple PHP script to get it working.

srand( microtime() * 1000000 );
$num = rand(1,2);
switch($num)
{
     case 1: 
     $imageName = "image1.jpg";
     break;
     case 2: 
     $imageName = "image2.jpg";
     break;
}

echo "<img src=images/".$imageName." />";

 

Copyright @ 2017 HKBlog.