how about this
you need two basic pages
index.html
left_col.html
in the index.html file use a switch
statement and a variable passed to the index page like so.
switch($from_user) {
case "page1":
$right_col = "page1.html";
break;
case "page2":
$right_col = "page2.html";
break;
default:
$right_col = "intro.html";
break;
}
include("left_col.html");
include("$right_col");
now all you have to do is setup the variable
that is passed to the index.html page. This should be passed throught the link like
index.html?from_user=page1
this will allow the page to determine what should be outputted.
You will also have to setup apache httpd
to run php when it encounters .html (this was mentioned in an article before)
Just an idea, hope this helps.
Mike J