Boat Drinks  

Go Back   Boat Drinks > General > Computer and Consoles

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Old 06-10-2007, 14:24   #1
Joe 90
Absinthe
 
Joe 90's Avatar
 
Join Date: Jan 2007
Location: Chester
Posts: 2,345
Default PHP - cookies... style switcher

Howdo,

yesterday i tried to make a php based style switcher... and now my site wont load my style sheets, but rather than give in - i'm still in search of an answer...

anyway, heres my code -
Quote:
Originally Posted by head.php
Code:
<link rel="stylesheet" href="<?php print $currentstyle; ?>" type="text/css" />
Quote:
Originally Posted by setstylecookie.php
Code:
<?php
	// Set Default Style
	$currentStyle = 'bridge.css';
	// Check to see if the page was posted back
	if(isset($_POST["submit"]))
	{
		// Find out if they want to set or delete a cookie
		if($_POST["style"] == "none")
		{
			// Unset the Cookie
			setcookie("style", "", time()-288000);
		}
		// Set Current Style
		$currentStyle = $_POST["style"] . ".css";
		// Set the requested Style to a cookie
		setcookie("style", $_POST["style"], time()+288000);
	} else {

		// Check Cookie for Style
		if(isset($_COOKIE["style"]))
		{
			// Use Style From Cookie
			$currentStyle = $_COOKIE["style"] . ".css";
		} else {
				// Set Default Style
				$currentStyle = 'bridge.css';
			}
	}
?>
Quote:
Originally Posted by submenu.php
Code:
	<form method="post" action="../css/setstylecookie.php">
    	<select name="style">
        	<option value="none">No Styles</option>
            <option value="bridge">Bridge</option>
            <option value="show">Old School</option>
            <input type="submit" name="submit" value="set" />
		</select>
	</form>
then obviously i have 3 CSS files - bridge.css, show.css and none.css

and my dir tree is a little bit like...
Code:
./
./head.php
./includes
../css/
..../bridge.css
..../setstylecookie.php
../php/
..../submenu.php
don't suppose we have any php legends in here do we?
__________________
360 Blog | Join GiffGaff | Twitter

Last edited by Joe 90; 06-10-2007 at 15:30.
Joe 90 is offline   Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 19:58.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.