When i goto my shoutbox page it shows the News page before it shows the shoutbox, how to fix this heres all my php code for that part:
<?php
if($_GET['page']=='main')
{
$number = "5";
$category = "1";
$template = "Default";
include("news/show_news.php");
}
if($_GET['page']=='blog')
{
$number = "5";
$category = "3";
$template = "Default";
include("news/show_news.php");
}
if($_GET['page']=='info')
{
$number = "5";
$category = "2";
$template = "Default";
include("news/show_news.php");
}
if($_GET['page']=='archive');
{
$number = "5";
$category = "1";
$template = "Default";
include("news/show_archives.php");
}
if($_GET['page']=='')
{
$number = "5";
$category = "1";
$template = "Default";
include("news/show_news.php");
}
?>
This is the code i add before ?>
if($_GET['module']=='shoutbox')
{
include("modules/shoutbox.php");
}
When i add that and goto that shoutbox page it displays the news from the ['page']=='' before it shows the shoutbox, what should i do?