Bonjour les amis. J'ai un pblm assez courant il parait mais je n'arrive pas à le résoudre . quelkun pour m'aider ? merci
erreur :
Warning: Cannot send session cookie - headers already sent by (output started at /verif.php:7) in /verif.php on line 7
Warning: Cannot send session cache limiter - headers already sent (output started at /verif.php:7) in/verif.php on line 7
Warning: Cannot add header information - headers already sent by (output started at /verif.php:7) in /verif.php on line 16
verif.php :
<html>
<head>
<link href="../pontrouge.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?session_start();
$_SESSION["auth"];
include("../fonctions.php" );
include("../connect.php" );
if(verif_user($_POST['nom'],md5($_POST['passe'])) != 0) {
header("Location: news.php" );
} else {
$_SESSION["auth"]="yes";
header("Location: choix_action.php" );
}
?>
</body>
</html>