Bonjour,
je possède une page verification qui contient le code suivant:
Code :
- <?php
- $requete = mysql_query("SELECT * FROM sessions WHERE droit=1" ) or die(mysql_error());
- while($reqtmp = mysql_fetch_array($requete))
- {
- if(($reqtmp["login"] == $_POST["login"]) && ($reqtmp["password"] == $_POST["pass"]))
- {
- $session["login"] = $reqtmp["login"];
- $session["password"] = $reqtmp["password"];
- header("Status: 301 Moved Permanently", false, 301);
- header("Location: index.php?page=administration" );
- exit();
- }
- }
- ?>
|
A l'éxécution de ce code voici les erreurs que j'obtiens:
Warning: Cannot modify header information - headers already sent by (output started at /mnt/134/free.fr/b/4/cmgrille/site/index.php:9) in /mnt/134/free.fr/b/4/cmgrille/site/admin_user/verification.php on line 11
Warning: Cannot modify header information - headers already sent by (output started at /mnt/134/free.fr/b/4/cmgrille/site/index.php:9) in /mnt/134/free.fr/b/4/cmgrille/site/admin_user/verification.php on line 12
Et je ne sait pas comment résoudre ce problème
Merci d'avance