<?php
// create a theme url
require_once 'generalFunctions.inc.php';
$themeKey = 'themename';
$themeChoice = getUrlParameter($themeKey);
$themeParams = ($themeChoice == '') ? array() : array($themeKey => $themeChoice);
$_SESSION['theme']['choice'] = $themeChoice;
$queryParameters = http_build_query($themeParams);
$themeCSS = './theme.php?' . $queryParameters;
|