0
私のコーディングは、データを電子メールにプッシュするPHPへのポストコマンドを実行します。 私は、サーバーが電子メールをURLに送信したあと、リダイレクトする方法を探しています。フォームの送信後にリダイレクトするにはどうすればよいですか?
<?php
$email_from = '[email protected]';
$email_subject = "New Form submission";
$email_body = "You have received a new insurance enquiry from $firstname $lastname $gender born on $dobday $dobmonth $dobyear $smoker is after $insurtype
They want to cover $cover,000 for $years years for $meandpartner
Contact information:
Mobile: $mobile
Telephone: $landline
E-mail: $email
Street: $street
City: $city
Postcode: $postcode
Partner details:
$pfirstname
$plastname
$pgender
$pdobday $pdobmonth $pdobyear
$psmoker
" ?>
<?php
$to = "[email protected]";
$headers = "From: $email_from \r\n";
$headers .= "Reply-To: [email protected]";
mail($to,$email_subject,$email_body,$headers);
?>
をおかげで、しかし、私はエラーを取得する: 警告:ヘッダー情報を変更することはできません - すでにによって送られたヘッダを(出力は/home/quotetemarket/public_html/slider/ionRangeSliderDemo/action_life_insurance.php:40で開始されました)/ home/quotethemarket/public_html/slider/ionRangeSliderDemo/actio n_life_insurance.php on line 71 – Mike
ありがとう、私は間違って、今それは働いている! – Mike