what is the GET vars look like ?
print_r($HTTP_GET_VARS);
is $page set correct ? what is global $home1 for ?
echo "
<a href='http://www.acidsun.com/?page=tutes'>Tutorials </a>
";
I had a friend that had some problems with GET, I havent a clue how he messed php up but her was getting ' ' before and after the var.
foreach($HTTP_GET_VARS as $pos => $val)
$HTTP_GET_VARS[$pos] = trim($val);
would clear that up. I doubt this is the problem though.
Chris Lee
lee@mediawaveonline.com