*.css datei?

nordi

Erfahrenes Mitglied
Hi all!

Ich hab mal ne Frage zu css obwohl es vielleicht auch zu PHP gehört! !? Also, ist es möglich ein Random CSS script zu schreiben, dass bei einem Seitenaufruf ein vordefiniertes CSS aufruft. Also wie bei einem RandomSplashScript, dass bei jedem Seitenaufruf ein anderes Bild aufruft nur mit css ??

Mfg aus Köln

Jeff
 
PHP:
<html><head></head><body>
<?php
$count = 3; ## anzahl deiner splash dateien

$timeofday = gettimeofday();
srand(time()/$timeofday["usec"]);
if(!$style)  style = round(rand(1,$count)); 

echo '<link ref=stylesheet type="text/css" href="style' . $style . '.css">';

$s = '?style='.$style
?>
</body>

dann hinter jeden link $s hintersetzten.
 
Zurück