|
i love php =) -- good observation
<?
// pick a random number 1-5
$rand=rand(1,5);
// define colors
if($rand==1){
$top_color="red";
} elseif($rand==2){
$top_color="blue";
} elseif($rand==3){
$top_color="green";
} elseif($rand==4){
$top_color="orange";
} elseif($rand==5){
$top_color="purple";
}
?>
<style>
a:hover { color: <?=$top_color?>;
text-decoration: none;
font-family: "Verdana", "Tahoma", "Helvetica", "Arial", sans-serif; }
</style>
|