Probleme header

salut,
j’ai cree un site sur easyphp2.0 je voulais migrer vers php1.8 comme notre serveur php 1.8 a chaque fois il me signale une erreur CANNOT MODIFY HEADER INFORMATION-HEADERS ALREADY SENT BY…alors dans lotre 2.0 ya aucun blame ca passe nickel
s’il vouss plait aide a resoudre cette probleme je vs envoie le code

<?php session_start(); ?> Document sans titre
AUTHENTIFICATION
Login
Password
<?php if(isset($_POST['Submit'])) { extract($_POST); $_SESSION['user']=array(); require_once('connexion.php'); $exe=mysql_query("select nom, prenom, login, groupe from user where login='$log' and password='$pas'") or die('login ou mot de passe incorrect'); if($exe) { if(mysql_num_rows($exe)==1) { $ligne=mysql_fetch_array($exe); array_push($_SESSION['user'], $ligne[0], $ligne[1], $ligne[2], $ligne[3]); header('location:accueil.php'); } else { echo"
!!! login ou mot de passe incorrect
"; } }

}
?>

et la deuxieme partie

<?php session_start(); if(!isset($_SESSION['user'])) die('Veuillez vous logger'); ?> Page d'accueil
Header image L'ARTP  
AGENCE DE REGULATION DES TELECOMMUNICATIONS ET DES POSTES  
<?php echo $_SESSION['user'][0]." ".$_SESSION['user'][1]."
".$_SESSION['user'][2]."
deconnexion "; ?>
	<tr>
      <td width="165" height="54"><a href="create" class="navText Style9">Ajout d'un nouvel élement</a></td>
    </tr>
	<?php if($_SESSION['user'][3]==2) {   ?>
    <tr>
      <td width="165" height="74"><a href="update" class="navText Style9">Consultation / Modification / Suppression</a></td>
    </tr>
	<tr>
      <td width="165" height="39"><a href="update/index.php?val=eva" class="navText Style9">Conclusion</a></td>
    </tr>
	<?php }
	 ?>
  </table>
 <br />
&nbsp;<br />
&nbsp;<br />
&nbsp;<br /> 	</td>
<td width="4">&nbsp;</td>
<td colspan="2" valign="top"><img src="mm_spacer.gif" alt="" width="305" height="1" border="0" /><br />
&nbsp;<br />
&nbsp;<br />
<table border="0" cellspacing="0" cellpadding="0" >
    <tr>
      <td class="Style6">EVALUATION DE PERFOMANCE - FIN DE STAGE </td>
	</tr>

	<tr>
      <td class="bodyText"><p>&nbsp;</p>		</td>
    </tr>
	<tr>
	  <td class="bodyText"><div align="center" class="navText Style2"></div></td>
    </tr>
  </table>
 <br />
&nbsp;
<br />	</td>
<td width="59"><img src="mm_spacer.gif" alt="" width="50" height="1" border="0" /></td>
    <td width="227" valign="top"><br />
	&nbsp;<br />
	<table border="0" cellspacing="0" cellpadding="0" width="190" id="leftcol">

   <tr>
   <td width="10"><img src="mm_spacer.gif" alt="" width="10" height="1" border="0" /></td>
	<td width="170" class="smallText"><br />
		<p>&nbsp;</p>

		<br />
		&nbsp;<br />          </td>
     <td width="10">&nbsp;</td>
    </tr>
</table>	</td>
<td width="35">&nbsp;</td>
Accueil
             

Tu peux nous la refaire dans un dialecte plus compréhensible ?

Et si ton problème est ce que je pense, google :

www.google.com…

tu peut surtout pas mettre de fonction header() après que du html ai été généré…une histoire de cache du navigateur …

Enfin bref erreur bête =)

bye !