Más o menos te entiendo, algo como esto puede servir, pero dependiendo un poco de lo que ya tengas hecho
por un lado tenes el header.php
que tendría
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $titulo; ?></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
por otro el pie o footer
y en tus diferentes páginas (ej. inicio.php y contacto.php)
Código PHP:
Ver original<?php
$titulo = "Página de inicio";
include('header.php');
?>
contenido de inicio
<?php
include('footer.php');
?>
Código PHP:
Ver original<?php
$titulo = "Contáctenos";
include('header.php');
?>
<formulario de contacto....
<?php
include('footer.php');
?>
Esta es una alternativa tan solo, se pueden hacer variantes más complejas, incluso setear el title con javascript (aunque en este caso los buscadores harían caso omiso de este)
Saludos