[RESOLU]Header n'apparaissant pas

Header n'apparaissant pas [RESOLU] - PHP - Programmation

Marsh Posté le 12-10-2007 à 20:29:19    

Hello a tous, j'ai un petit souci avec un script, il s'agit d'un script d'envoi de mail a une personne precise, le probleme est que mon script n'affiche pas le header que je demande a la fin ...
 

Code :
  1. <?php
  2. ini_set("sendmail_from", "me@mydomain.com" );
  3. $choice = $_POST['choice'];
  4. $olly = $_POST['olly'];
  5. $stefan = $_POST['stefan'];
  6. $jon = $_POST['jon'];
  7. $rowland = $_POST['rowland'];
  8. $mark = $_POST['mark'];
  9. $adress_olly = 'sendto@mydomain.com';
  10. $adress_stefan = 'sendto@mydomain.com';
  11. $adress_jon = 'sendto@mydomain.com';
  12. $adress_rowland = 'sendto@mydomain.com';
  13. $adress_mark = 'sendto@mydomain.com';
  14. if($choice == 'olly')
  15. {
  16. $TO = "sendto@mydomain.com";
  17. $h  = "From:" . $TO;
  18. $message = "";
  19. foreach($_POST as $key => $val)
  20. $message .= $key . ' : ' . $val . "\n";
  21. mail($TO, $subject, $message, $h);
  22. }
  23. elseif($choice == 'stefan')
  24. {
  25. $TO = "sendto@mydomain.com";
  26. $h  = "From:" . $TO;
  27. $message = "";
  28. foreach($_POST as $key => $val)
  29. $message .= $key . ' : ' . $val . "\n";
  30. mail($TO, $subject, $message, $h);
  31. }
  32. elseif($choice == 'jon')
  33. {
  34. $TO = "sendto@mydomain.com";
  35. $h  = "From:" . $TO;
  36. $message = "";
  37. foreach($_POST as $key => $val)
  38. $message .= $key . ' : ' . $val . "\n";
  39. mail($TO, $subject, $message, $h);
  40. }
  41. elseif($choice == 'rowland')
  42. {
  43. $TO = "sendto@mydomain.com";
  44. $h  = "From:" . $TO;
  45. $message = "";
  46. foreach($_POST as $key => $val)
  47. $message .= $key . ' : ' . $val . "\n";
  48. mail($TO, $subject, $message, $h);
  49. }
  50. elseif($choice == 'mark')
  51. {
  52. $TO = "sendto@mydomain.com";
  53. $h  = "From:" . $TO;
  54. $message = "";
  55. foreach($_POST as $key => $val)
  56. $message .= $key . ' : ' . $val . "\n";
  57. mail($TO, $subject, $message, $h);
  58. header('http://www.mywebsite.com/sent.html');
  59. }
  60. ?>


 
Si vous avez des avis, la survie de mon ordinateur en depend, un coups de boule dans l'ecran est a deux doigts de partir !
 
Merci  :ange:


Message édité par Jmeu le 12-10-2007 à 21:57:00
Reply

Marsh Posté le 12-10-2007 à 20:29:19   

Reply

Marsh Posté le 12-10-2007 à 20:43:06    

Reply

Marsh Posté le 12-10-2007 à 20:49:50    

wow putain la honte ^^
 
merci  :pt1cable:


Message édité par Jmeu le 12-10-2007 à 20:50:03
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed