Hi!
Thanx for u taking time to read!
have this weard problem... when u go to the index page stylesheet ll not load, throught I have defined it in the code.
If I use to separe codes for 'style' and 'page' then the same sode ll work, but I am trying to make less coden I have putted all in one, and now I have problems.. hte main page ll load, but the master style ll by enpty... if I click on the style link the it ll load and stays "in"...
what should I do?
if (empty($_GET['style']) && ($_GET['page'])) {
if (!isset($_SESSION['stylesheet']) && !isset($_GET['page'])) {
$_SESSION['stylesheet'] = 'master';
}
} else {
$_SESSION['stylesheet'] = $_GET['style'];
$_GET['page'] = 'main';
}
$mainBODY = file_get_contents(str_replace(" ", "%20",$_GET['page'].'.php'));
echo '<style type="text/css" media="all">@import "'.$_SESSION['stylesheet'].'.css";</style>';
thax in advance!