mixedtape Posted January 9, 2009 Share Posted January 9, 2009 Website: http://cgi.mixed-tape.org/index.php Problem: So when I go to switch to skin 2, it comes up fine. But, when I go to click on the "1" for comments on the blog, it brings me back to skin 1. Also, there is an error in my cookiecheck.php on line 11? <?php $total_skins = 2; $default_skin = 1; if (isset($_GET['newskin'])) $newskin = (int)$_GET['newskin']; elseif (isset($_COOKIE['skin'])) $newskin = (int)$_COOKIE['skin']; else $newskin = $default_skin; if (empty($newskin) || $newskin < 1 || $newskin > $total_skins) $newskin = $default_skin; setcookie('skin', $newskin, time()+(86400*365), '/'); $skin = $newskin; $headervar = "/my/path/here/mixed-tape.org/nav/header"; $extension = ".php"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/140096-cutenews-and-skinning-help/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.