looking for a script that let´s users customize the website, nothing special ... just let them choose their colors and stuff ... help me out !!
script that let users customise your website
Collapse
X
-
Tags: None
-
Maybe somthing like this?
http://www.scriptbreaker.com/examples/bgcchanger.asp
And over "the rest"what do you mean? That they can manage their bookrmarks and stuff or something?
AmdreQuestions?
ICQ: 125184542 -
... no,no ... I just want to give them different layouts to choose from, somethin like http://www.alltheweb.com/help/alchemist/gallery.html ... but not that comlicated, only different color settings (bgcolor/linkcolor ... etc.)
I think it´s called "XML based on cookies" , so everytime they come back they will see the website like they want to ... I just can´t find anything.Last edited by funkmaster; 11-19-2002, 03:07 AM.Comment
-
function barf($stylesheet)
{
switch($stylesheet)
{
case 'red': return 'red.css';
case 'blue': return 'blue.css';
case 'ugly': return 'ugly.css';
default: return 'normal.css';
}
}
Then
<link rel="stylesheet" type="text/css" href="<?php echo barf($_COOKIE['my_style'])?>">
(sorry: php coding don't show up too pretty here)
Then have fun making style sheets.
Comment

Comment