Zen Follower
- Join Date:
- Jul 2010
- Location:
- Battle Ground, WA
- Posts:
- 282
- Plugin Contributions:
- 0
Change background on refresh
I'd like to change the background on every refresh...
I looked this up on google and this is what I came up with:
(My problem is, I did all this but it didnt work! :shocking:)
Add this to your php file:
<?php
$imagearray=file('background.inc.php');
$imagenum=rand(0,count($imagearray)-1);
?>
Add this to your css:
div.container {
padding : 95px 20px 20px 161px;
background : url(<?php echo $imagearray[$imagenum];?>) #FFFFFF repeat;
margin-top: nem
}
And make a new file called "background.inc.php" and inside it put:
images/image1.jpg
images/image2.jpg
images/image3.jpg
etc, no blank lines, no quotes, no spaces, no semi-colons
My problem is, I did all this but it didnt work! :shocking: