Ok.
Are you coding these pages in PHP or HTML? (or something else)
If you're coding them in PHP, you'll wanna do something like this
|
Code:
|
Function Page1(Variables) {
Content
}
Function Page2(Variables) {
Content
}
Function Page3(Variables) {
Content
}
//-----------Switches----------
switch ($DID) {
default:
Page1 (variables);
break;
case "Page2":
Page2 (variables);
break;
case "Page3":
Page3(variables);
break;
}
and everything "can" be contained within 1 PHP file. |