// Randomize Background Image with PHP and CSS3.
$bg = array('bg-01.jpg', 'bg-02.jpg', 'bg-03.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{font-family: 'Amarante';margin: 0;background:#000 url(/images/) top center no-repeat;}