Forum Moderators: coopster
<html>
<head><?php echo $title;?></head>
<body>
<?php
// inserts the content into the template
$page = $_GET['page'];
include("$page.php");
?>
</body>
</html>
$title is defined in the page to be included, but it's not being echoed - is there a way to ensure that variables in the included page are processed by the template script?