Forum Moderators: coopster
for a starter look HERE [webmasterworld.com]
Includes aside you could change the skin with if statements based on the query string.
if you set a link on your site to /new_music/index.php?blue_skin
and set an if statement in that index.php file (for exmaple we'll change the bgcolor) like this:
<html><head><title>New Music</title></head>
<?php
if ($_SERVER['QUERY_STRING'] == "blue_skin") // so if query = index.php?blue_skin we'll turn the bg blue
{ echo "<body bgcolor=\"#0099FF\">";
}
if ($_SERVER['QUERY_STRING'] == "red_skin") // or if query = index.php?red_skin turn the bg red
{ echo "<body bgcolor=\"#ff0000\">";
}
if ($_SERVER['QUERY_STRING'] == "black_skin") // or if query = index.php?black_skin turn the bg black
{ echo "<body bgcolor=\"#000000\">";
}
elseif ($_SERVER['QUERY_STRING'] == "") // else use default
{ echo "<body bgcolor=\"#fff\">";
}
?>
</body>
</html>
you could write the entire site in an if statement for each skin. hope it helps.