Skip to content

Instantly share code, notes, and snippets.

@itsbalamurali
Created November 23, 2013 07:27
Show Gist options
  • Save itsbalamurali/7611864 to your computer and use it in GitHub Desktop.
Save itsbalamurali/7611864 to your computer and use it in GitHub Desktop.
Randomize Background Image
<?php
$bg = array('bg-01.jpg', 'bg-02.jpg', 'bg-03.jpg', 'bg-04.jpg', 'bg-05.jpg', 'bg-06.jpg', 'bg-07.jpg' ); // array of filenames
$i = rand(0, count($bg)-1); // generate random number size of the array
$selectedBg = "$bg[$i]"; // set variable equal to which random filename was chosen
?>
body{
background: url(images/<?php echo $selectedBg; ?>) no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment