I'm stumped, I dont get it. PHP is serverside. So why does my style switcher work in Firefox and not IE? I just fixed it so that it would work with register_globals turned off, but its still has bugs I guess...
Look towards the bottom of the leftnav. And give it a try.
http://www.mzanime.com/
Here's the PHP and HTML code.
<style type="text/css">
<?php $css = 0; if($css == 1) { ?> @import url(/css/advanced.css); <?php } ?>
@import url(/css/<?php echo(!$_COOKIE['sitestyle'])?'advanced':$_COOKIE['sitestyle'] ?>.css);
</style>
<ul>
<li class="bg"><b>Swapper</b></li>
<li class="sub">Don't like these colors? Well then you have a choice of whatever theme you want!</li>
<li><a href="/switcher.php?set=advanced"><img src="/images/cube-blue.gif" border="0" alt="" /> Default</a></li>
<li><a href="/switcher.php?set=maroon"><img src="/images/cube-maroon.gif" border="0" alt="" /> Maroon</a></li>
<li><a href="/switcher.php?set=orange"><img src="/images/cube-orange.gif" border="0" alt="" /> Orange</a></li>
<li><a href="/switcher.php?set=olive"><img src="/images/cube-olive.gif" border="0" alt="" /> Olive</a></li>
</ul>