Add this code to your page:
and this in <head>:
the link will be like this: yourdomain.com
Code:
<?php
if(isset($_GET['style']) and file_exists($_GET['style'] .'.css')) {
setcookie('style', $_GET['style'] . '.css', time()+365*24*60*60, '/');
}
$style = isset($_COOKIE['style']) ? $_COOKIE['style'] : 'default.css';
?>
Code:
<link href="<?php echo $style; ?>" rel="stylesheet" type="text/css">
Comment