Forum Moderators: coopster
The page will no longer recognise variables specified in a link (i.e.?skin=black)
It then appears to use the line...
<?php if ($skin == "") $skin = "blue";?>
what server setting could have made this no longer function?
"register_globals", is that what you mean, because it is turned offThat sounds like the cause of your problem. You need to use $_GET [php.net]['skin']. $_GET is a superglobal and exsists even with the default register_globals turned off.
Note: $HTTP_GET_VARS has been deprecated.