Skip to content

Instantly share code, notes, and snippets.

@jamiefdhurst
Created January 27, 2012 12:27
Show Gist options
  • Save jamiefdhurst/1688545 to your computer and use it in GitHub Desktop.
Save jamiefdhurst/1688545 to your computer and use it in GitHub Desktop.
Simple random backgrounds
<?php
$randomBackgrounds = array(
'FF0000',
'CC0000',
'0000FF',
'url(test.png)',
// more colours or images
);
?>
<style type="text/css">
body {
background: <?php echo $randomBackgrounds[array_rand($randomBackgrounds)]; ?>
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment