Make your template file. You can design this in Dreamweaver or roll it by hand, however you normally approach building a page. Where you want the main content to be, insert some text. In this example we'll use MY_PAGE_CONTENT.
E.g. mytemplate.html
<html>
<head>
<title>My Site</title>
</head>
<body>
MY_PAGE_CONTENT
</body>
</html>
Now, for each page you make, base it on the following example. This is very basic to demonstrate what is happening but it will work fine.
<?php
// Grab template.
$template = "mytemplate.html";
if (!$template_handle = fopen($template, "r"))
{
die("Couldn't open template for reading!");
}
$html = fread($template_handle, filesize($template));
fclose($template_handle);
// Set the page's content.
$content = "<h1>This is my page!</h1>\n";
$content .= "<p>Welcome to my page, bla, bla, bla...</p>\n";
// Generate final HTML by inserting page content into template.
$html = str_replace("MY_PAGE_CONTENT", $content, $html);
// Output final HTML to browser.
echo $html;
?>
May have to change the path to the template file, etc, depending where you put your files.
Hope this gets you started.