Código PHP:
<? include('includes/header.html'); ?>
Esto me va a pasar siempre? debido a que planeo hacer una web con varias paginas y entonces cada vez que agrege algo nuevo a header.html para que se vea deberia de actualizar cada pagina para que me carge el include...

Alguna solucion???
El codigo es basico por ahora, estoy haciendo pruebas ya que nunca use esto:
Código PHP:
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#000000">
<tr>
<td colspan="3">
<? include('includes/header.html'); ?>
</td>
</tr>
<tr>
<td width="14%"><table width="100">
<tr>
<td width="76">
<? include('includes/menu.php'); ?>
</td>
</tr>
</table></td>
<td width="62%"> </td>
<td width="24%" valign="top">
<? include('includes/form-reviews.php'); ?>
</td>
</tr>
<tr>
<td colspan="3">
<? include('includes/footer.php'); ?>
</td>
</tr>
</table>
</body>
</html>