vote up 1 vote down star

how can we randomly change image when we refresh the page every time in php

flag
Where are the images stored? – colithium Jul 16 at 6:26

2 Answers

vote up 8 vote down

Load the possible image extensions into an array. Use rand() to generate a random integer within range of the length of this array, and display it in your HTML.

$images = array('img1.png', 'img2.png');
$rand = array_rand($input, 1); // number of random keys to generate
echo "<img src=\"".$images[$rand[0]]."\" alt=\"this image\">";
link|flag
wonders about the alt text... – ChristianLinnell Jul 16 at 6:31
As long as it validates :) – Ian Elliott Jul 16 at 6:32
Just make alt an empty value... if the alt text cannot entirely replace the image in its context, it should be empty. – Blixt Jul 16 at 6:39
Oh and also have a look at the php.net/array_rand function... $images[array_rand($images)]; It's especially useful when you want several random entries. $keys = array_rand($images, 3); – Blixt Jul 16 at 6:43
I agree with Blixt. Unless your filenames are sensible enough that you could drop them in the alt text instead. – ChristianLinnell Jul 16 at 7:19
show 1 more comment
vote up 2 vote down
  1. Create an array of image names.
  2. Generate a random number between 0 and the length of the array.
  3. Generate an <img> tag using the image name corresponding to that random number.
link|flag
Beat me ): – Ian Elliott Jul 16 at 6:29
That's 'cause he didn't stop to write code ;-) – beggs Jul 16 at 6:30
Ah but you have code :-) – ChristianLinnell Jul 16 at 6:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.