PHP & CSS Themes
Posted: Sun Sep 27, 2009 9:32 am
Please hopw someone can help im a php n00b
If i have this List box in HTML:
How can i have different style sheets on my site but say when a user selects blue it will select blue.css and apply the blue theme.
Thanks in advance.
If i have this List box in HTML:
Code: Select all
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<form name="form1" method="post" action="">
<label>
<select name="themes" id="themes">
<option>Select Theme</option>
<option>Blue</option>
<option>Green</option>
<option>Red</option>
</select>
</label>
</form>
</body>
</html>
Thanks in advance.