quand j'appelle ma page page.php, je recoit le message d'erreur suivant:
Warning: Cannot send session cache limiter - headers already sent (output started at c:\page.php:2) in c:\page.phpon line 3
voila le code de ma page
<?php
session_start();
if ($permission=="yes") {
?>
<html>
<head>
<title>Page</title>
</head>
<body bgcolor="#FFFFFF">
<table border="0">
<tr>
<td><P style = "align: center; background: blue; font-size: 18pt; color: cyan "> Page d'accueil d'administration </p></td>
</tr>
</table>
<form enctype="multipart/form-data" method="post" action="page2.php">
<div align="left">
<P>
<SELECT size="7" name="cs">
<OPTION value="1">a </OPTION>
<OPTION value="2">b</OPTION>
<OPTION value="3">c</OPTION>
<OPTION value="4">d</OPTION>
<OPTION value="5">e</OPTION>
<OPTION value="6">f</OPTION>
<OPTION value="7">g</OPTION>
</SELECT>
</P>
<p>
<INPUT type="hidden" name="test3" value=<?php echo $temp; ?>>
<input type="submit" value=" OK ">
</p>
</div>
</form>
</body>
</html>
<?php }else{ ?>
You are not allowed to access this page
<?php } ?>
La page se charge se charge normalenet après le message d'erreur, et la page page2.php est aopellable normalent.
Je ne vois pas pourquoi il y a un message d'erreur??