it work fine all except the default page. it always stays there no matter what page ur on.so below my downloads the news is still displayed.
CODE
$n = isset($_GET['n']) ? $_GET['n'] : null;
if($n) {
try {
include $n.'.php';
} catch (Exception $e) {
header("Location: ".$_SERVER['PHP_SELF']."?i=error");
}
}
if($i != 'error')
include 'modules/news.php';
if($n) {
try {
include $n.'.php';
} catch (Exception $e) {
header("Location: ".$_SERVER['PHP_SELF']."?i=error");
}
}
if($i != 'error')
include 'modules/news.php';
what am i doing wrong?