Je ne peux pas commencer session à l'aide session_start()
... Je reçois cette erreur:session PHP Problème
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /**************/index.php:5) in /**************/session.php on line 2
c'est le contenu de mon fichier de session.php:
<?php
session_start();
if(((!isset($_SESSION['user']))) || (!isset($_SESSION['valid'])) || ($_SESSION['valid'] != -1 && $_SESSION['valid'] != 0 && $_SESSION['valid'] != 1))
$_SESSION['valid'] = 0;
function destroy_session()
{
session_destroy();
}
?>
Et je dois résoudre ce urgent !!
Etes-vous absolument sûr qu'il n'y a pas d'espace avant le ' Php'? –
http://stackoverflow.com/questions/1183726/headers-already-sent-in-php – Phil
Ce fichier est-il inclus dans un autre fichier? – lonesomeday