

<html>
<head>
<title><?php echo $title; ?>
</head>
<body>
<?php echo $body; ?>
<br><?php echo $footer; ?>
</body>
</html>
<?php
$title = "index page";
$body = "body text";
$footer = "footer ยฉ 2005";
include("template.php");
?>
peter@flexiwebhost said:weblord that is not necessarily the bet thing to do. It is not taking into consideration the possibility of conflicting variables etc.
The best would be as suggested, post the code and we can then go from there.



