Forum Moderators: coopster
often you can put vars in the files before the include for the header, something like so
<?
$title = 'my great site title';
$description = 'my great description';
$keywords = 'my great keywords';
include '/path/to/header.php';
?>
then in the header
<?
if(!isset($title)) $title = 'my default site title';
if(!isset($description)) $description = 'my default description';
if(!isset($keywords)) $keywords = 'my default keywords';
?>
then echo the value of those vars in the appropriate place in the header.