Add this to the top of your .css file (you can add more colours if you want)
Then to display a random colour use this (example)PHP Code:<?php
$colour[] = "#FFCCCC";
$colour[] = "#FFFFFF";
$colour[] = "#000000";
srand ((double) microtime() * 1000000);
$colour2 = rand(0,count($colour)-1);
?>
PHP Code:body {background-color: <?php echo "$colour[$colour2]"; ?>;
font-size: 12px;
font-face: arial;
}![]()





Reply With Quote
lol.



