I would like to build a website where visitors have a choice of themes they can veiw the website in, ive heard they can be done using php and css, does anyone know of any good tutorial sites?
Not css, templates.
The source code link at the top of my site has a page called myshows_template.php which does this if you want an example.
http://db.etree.org/
THere are some links on an article you can catch here about PHP, MyAQL and PHPlib templates
http://www.webmasterbase.com/article/563
Nick
I have made one of the Control Panel for my clients (Being a Control Panel) i cannot send the link but which used themes. Client can change his colour schemes just before entering to the site. How i managed is: I think there are lots of issues with stylesheets compatibilty with IE And Netscape so i used PHP variables for the colour schemes. Make PHP Style pages having the colour variables like: colour1.php <? $table_border="#000000"; $table_top_bg="#ffcccc"; ?> etc declaring all variables on the file. Now either in your pages this variables instead of colours (You MUST NOT Use WYSIWYG IS What i LIKE) Make 10 or more schemas. Allow the usert to change their schemas store the user prefernece in database so that every time he gets the same combination he likes. ANd one more thing you can do this using stylesheets also. Include the stylesheets on every page using the database value of the user preference. In case you dont understnand anything mail me. One of this days I am going to write an Article for PHPBuilder 😉 on this.