include "header.php"; // Здесь надо поставить значение переменной $title
include "page.php"; // Здесь переменная $title
ob_start();
include("header.php");
include("page.php");
$html = ob_get_clean();
$html = preg_replace("/<title>.*?</title>/si", "<title>{$new_title}</title>", $html);
echo($html);