If you header is called using a function, simply pass the title via a function variable...
Example...
-- in the include file --
function Write_Header($strTitle) {
echo '<!DOCTYPE ....>
<html>
<head>
<title>' . $strTitle . '</title>
</head>';
}
-- on each page --
Write_Header('My Website - Home');
There you go 😉