script that let users customise your website

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • funkmaster
    So Fucking Banned
    • Sep 2001
    • 7938

    #1

    script that let users customise your website

    looking for a script that let´s users customize the website, nothing special ... just let them choose their colors and stuff ... help me out !!
  • justsexxx
    Too lazy to set a custom title
    • Aug 2001
    • 13723

    #2
    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?

    Amdre
    Questions?

    ICQ: 125184542

    Comment

    • funkmaster
      So Fucking Banned
      • Sep 2001
      • 7938

      #3
      ... 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

      • DragonAss
        Confirmed User
        • May 2001
        • 206

        #4
        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

        Working...