Da quanto leggo, desumo tu non abbia un db di fondo nel quale immagazzinare le informazioni da richiamare di volta in volta.
Quindi butto giù rapidamente una soluzione che dovrebbe funzionare.

es. index.php
Codice PHP:
<?php
include("corpo.php");
?>
<html>
<head>
  <title><?php echo $titolo?></title>
</head>
<body>
<?php echo $body?>
</body>
</html>
es file incluso corpo.php
Codice PHP:
<?php
$titolo 
"Hello Word";
$body "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
$body .="<tr>";
$body .="<td bgcolor='#FF0000'></td>";
$body .="<td bgcolor='#FFFFFF'></td>";
$body .="<td bgcolor='#336600'></td>";
$body .="</tr>";
$body .="</table>";
?>
Spero sia più o meno quello che cerchi.