Sorry, I'll try and explain it better. Here's a simplified version of what I'm trying to do, it's a template system. First I'm making a template in Dreamweaver for all pages. Eg:
<?php include('design.php') ?>
<html>
<head>
<title>Example Page</title>
<?php print($head) ?>
</head>
<body>
<?php print($top) ?>
Content Here
<?php print($bottom) ?>
</body>
</html>
Now when a page is viewed all of the header, top, and bottom html code is included. The main design is in the design.php file. Eg:
<?php
$junk = <<< EOJ
?>
<html>
<head>
<title>Design</title>
<?php
EOJ;
$head = <<< EOH
?>
<meta name="Keywords" content="test, php, etc">
<link href="test.css" rel="stylesheet" type="text/css">
<?php
EOH;
$junk = <<< EOJ
?>
</head>
<body>
<?php
EOJ;
$top = <<< EOT
?>
<table>
<tr>
<th colspan="2">Test Table</th>
</tr>
<tr>
<td>Navigation</td>
<td>
<?php
EOT;
$bottom = <<< EOB
?>
</td>
</tr>
</table>
<?php
EOB;
$junk = <<< EOJ
?>
</body>
</html>
<?php
EOJ;
unset($junk);
?>
Notice that all the code is outside php so Dreamweaver will display the design properly instead of just one little php tag. This way I can see what I'm changing when I edit the design. That is why I want to break out of PHP. Note that this isn't exactly how I'll have it set up but it's the general idea.