|
DaWei, most sites now have some type of page build that look something like this:
[php]
<?php
$title = "WhateveR";
include("header.php");
include("sidebar.php");
?>
Page content
<?php include("footer.php"); ?>
[/php]
And this is personally what i would use for creating a site. this makes it possible for each of the included files to check for a "page=printable" variable in the URL or something and show a slimmer version to the browser that's designed at a smaller resolution to fit on one page...
__________________
|