Ok I've got:
<?php
if($c == "events") { include "events.php";
}
if($c == "reviews") { include "reviews.php";
}
if($c == "interviews") { include "interviews.php";
}
if($c == "media") { include "media.php";
}
if($c == "radio") { include "radio.php";
}
if($c == "top10") { include "top10.php";
}
if($c == "forum") { include "forum.php";
}
if($c == "team") { include "team.php";
}
if($c == "songs") { include "songs.php";
}
if($c == "pics") { include "pics.php";
}
if($c == "video") { include "video.php";
}
else {
else "main.php";
}
?> but when I run main.php?c=reviews,it loads the reviews page properly, but alos add the main.php at the bottom again, Who can I stop it from running the main.php when I use the ?c=example. ??? If any could help. Thanks!





Bookmarks