This commit is contained in:
Christian Paminger
2007-07-04 12:30:58 +00:00
parent 4cede65153
commit e390a174f7
+10
View File
@@ -0,0 +1,10 @@
<?php
setcookie('stylesheet', 'tw');
if (isset($_COOKIE['stylesheet']))
$stylesheet=$_COOKIE['stylesheet'];
else
$stylesheet='tw';
header("Content-Type: text/css");
readfile ('styles/'.$stylesheet.'.css');
?>