Halala
Maintenant, quand j'envoie mon site sur le serveur (1and1), j'ai une erreur
Citation :
Warning: Cannot modify header information - headers already sent by (output started at /homepages/45/dXXXXXX//htdocs/minichat_post.php:5) in /homepages/45/dXXXXXX/htdocs/minichat_post.php on line 23
|
Pourtant mon code fonctionne bien chez moi !
Code :
- <html>
- <meta charset="utf-8" />
- <?php
- try
- {
- $pdo_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION;
- $bdd = new PDO('mysql:host=ddbXXX.1and1.com;name=dbXXXX', 'dbXXXXX', 'YYYYYY', $pdo_options);
- if($_POST['pseudo']!="" AND $_POST['message']!="" )
- {
-
- $req = $bdd->prepare('INSERT INTO commentaires (pseudo, message) VALUES(?, ?)');
- $req->execute(array($_POST['pseudo'], $_POST['message']));
-
-
- header('Location: messages.php?erreur=');
- }
- else
- {
- header('Location: messages.php?erreur=message d'erreur');
- }
- }
- catch(Exception $e)
- {
- die('Erreur : '.$e->getMessage());
- }
- ?>
- </html>
|
Une idée ?
car là aussi totaly blocked !
Message édité par benbigboss le 04-02-2012 à 18:20:28