Here is my accueil.php file :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
<?php
define('WEBPATH', 'galeries');
require_once(WEBPATH . "/zp-core/template-functions.php");
$_page = "accueil";
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Matthieu Rieux - Accueil</title>
<meta http-equiv="Content-Type" content="text/html; charset=UFT-8" />
<!--<meta http-equiv="Content-Type" content="text/html; charset=UFT-8" />-->
<link rel="stylesheet" type="text/css" media="screen, projection" href="/css/master_photos.css" />
</head>
<body class="photos">
<!-- Le corps du site est en fait un tableau de 1 ligne 1 colonne , il est noir et encadré de gris sur un fond (body) un peu plus clair -->
<table id="tab_corps">
<tr><td>
<!-- Le haut de la page -->
<?php include($obj = "./hautpage/hautpage.php"); ?>
<div id="contenu">
<div class="albums">
<p id="arbo">ACCUEIL</p>
<?php if (getOption('Allow_search')) { printSearchForm(''); } ?>
</div>
</div>
<!-- Le contenu de la page -->
<?php include ('./galeries/themes/MatthRieux/moment.php'); ?>
<!-- Le pied de page -->
<?php include ('./piedpage/footer.php'); ?>
</tr></td>
</table>
</body>
</html>
Again, many thanks for your help.