home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #12 / Amiga Plus CD - 2002 - No. 12.iso / AmigaOS / Aplus_Dev / AP-Website / bestellung / adressaenderung-script.php4 < prev    next >
Encoding:
Text File  |  2002-10-28  |  466 b   |  11 lines

  1. <?php
  2.   $sender = $HTTP_POST_VARS["email"];
  3.   $fmtResponse= implode("", file("empfang.htt"));
  4.   $fmtMail= implode("", file("adressaenderung-results.htt"));
  5.   foreach($HTTP_POST_VARS as $key=> $val) {
  6.     $fmtResponse= str_replace("<$key>", $val, $fmtResponse);
  7.     $fmtMail= str_replace("<$key>", $val, $fmtMail);
  8.   }
  9.   mail($HTTP_POST_VARS["recipient"], $HTTP_POST_VARS["subject"], $fmtMail, "From: $sender\nX-Mailer: Bestellung");
  10.   echo $fmtResponse;
  11. ?>