View Single Post
Old 06-22-2002, 06:55 PM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,486
sde is on a distinguished road
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>
sde is offline   Reply With Quote