Umm.. well, i thought it did.. 🙁
Didn't test it extensivly enough..
Ok, here's the situation:
I have this at the top of the document (above header and body but under cookie):
<? if (!$scheme) { $scheme="yellow"; } include("schemes/$scheme.inc"); ?>
And i have this in the body:
<? if (!$page) { $page="error"; } include("$page.inc"); ?>
The problem i have is that if i got /test.php?scheme=red&page=about
and then click on the link to main (which is test.php?page=index)
It defaults back to the default colour scheme i set (yellow)...
how would i get these 2 to work together?
Thanks!