batman,
Again, many thanks for your support here.
I know I have to do some readings on includes. But this is how I understand what you are saying, tell me if I am right.
You have your index.html page. Within that index.html page is a table cell with the PHP code you gave me. If you go to the page the first time, the id variable is null so the php script goes to your inc folder and displays the mini html page called index.inc in that cell. When you click a link say members, the page refreshs, but with id=record in the address line. When the server gets to the PHP code you have in that cell, the id variable is not null so it goes to the next operator. It checks for roster.incl and displays that mini html page in the cell. If roster.incl does not exist, it displays a 404 error in that page. That about sum it up?
So if I wanted that cell to display the upcoming week's events, I would set a id=weekly pass that to the PHP script in the cell, go to weekly.incl and then in my weekly.incl have the PHP script I need to query my db and display it?