Hello,
I'm overhauling my site http://coleclan.net and am starting to use variables in places that define things like color, etc.
I am using an index.php that has several includes, and sets some key variables.
One such variable is $themeselect .
Right now, if i want to change the theme, i need to edit the index.php and change the line
$themeselect = "somename";
to reflect the new theme name.
What i would like to do is setup a list of names, and have the index.php make a random selection from the list and assign it to the $themeselect variable at time of page load.
How can i do this?
Beavis2084