2 CSS stijlen via cookies
clown
24/01/2008 11:25:00Ik heb een code en ik zit al heeeeeel lang te zoeken, maar ik kan de fout niet vinden :( .
Alles lijkt te werken, maar hij wil de stijl van de site niet veranderen.
Ik heb 2 css bestanden (default.css en default2.css)
index.php
skin.php
skin_response.php
Alles lijkt te werken, maar hij wil de stijl van de site niet veranderen.
Ik heb 2 css bestanden (default.css en default2.css)
index.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
(! $_COOKIE["Crossbones"]) ? $cbskin = 'default' : $cbskin = $_COOKIE["Crossbones"];
?>
<html>
<head>
<title>Crossbones</title>
<style type="text/css" title="layout" media="Screen" >
@import url("inc/css/<?php echo $cbskin ?>.css");
</style >
---rest van de pagina---
(! $_COOKIE["Crossbones"]) ? $cbskin = 'default' : $cbskin = $_COOKIE["Crossbones"];
?>
<html>
<head>
<title>Crossbones</title>
<style type="text/css" title="layout" media="Screen" >
@import url("inc/css/<?php echo $cbskin ?>.css");
</style >
---rest van de pagina---
skin.php
Code (php)
skin_response.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
// verwijder bestaand cookie
setcookie ("Crossbones", $_GET['skweg'], time() - 3600, "/", ".crossbones.tk");
// zet nieuw cookie
setcookie ("Crossbones", $_GET['skval'], time()+(86400*365), "/", ".crossbones.tk");
?>
<html>
<body>
<p>Het thema is nu "<? echo $_GET['skval'] ?>".</p>
<p align="right"><a class="button" href="<? echo $url ?>">OK</a></p>
</body>
</html>
// verwijder bestaand cookie
setcookie ("Crossbones", $_GET['skweg'], time() - 3600, "/", ".crossbones.tk");
// zet nieuw cookie
setcookie ("Crossbones", $_GET['skval'], time()+(86400*365), "/", ".crossbones.tk");
?>
<html>
<body>
<p>Het thema is nu "<? echo $_GET['skval'] ?>".</p>
<p align="right"><a class="button" href="<? echo $url ?>">OK</a></p>
</body>
</html>
Er zijn nog geen reacties op dit bericht.