That last reply was confusing to me so here is a better one...
Make a link to your about page like this:
a href="file.php?page=about
Then in your file.php you can have the line of code:
if ($page == about){
include "about.inc";
}
You can also make your file.php display a default page if nothing is set for page like this:
if (!isset($page)){
include "default.inc";
}
I hope this helps you!
-The_loser
If you need more help e-mail me at the-loser1@home.com