View Single Post
Old Oct 8th, 2005, 4:36 PM   #7
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 5 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
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...
__________________

tempest is offline   Reply With Quote