Okay, I have a query include code, but it's not quite what I want. Here is what I have:
<?PHP if ($_SERVER["QUERY_STRING"] == "")
{
$include = "news/news";
}
else
{
$include = $_SERVER["QUERY_STRING"];
}
include("$include.php"); ?>
What that does is make news/news.php come up if no query is called. The query I currenty have looks like index.php?news/news. I'd like it to be something like index.php?page=news/news. If thats not too hard to ask, of course. -