I haven't experimented with it yet.
So can I have a header.tpl with:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html401/loose.dtd">
<head><title>Phonebook home</title>
<link href="./templates/style.css" rel="stylesheet" type="text/css" /></head>
<body>
<div id ="content"><div id ="header">
<!-- BEGIN HEADER -->
<br><h1>Company Name</h1>
<!-- END HEADER -->
---end of header.tpl file----
then a content.tpl with:
blah blah blah
</div><!--content-->
</body>
</html>
---end of content.tpl file----
and my php code saying
$template->loadTemplatefile("header.tpl", true, true);
$template2->loadTemplatefile("content.tpl", true, true);
.
.
.
$template->show(); //show header.tpl
$template2->show(); //show content.tpl
would that work?