我這裏有一個表格:http://www.testing-joestanford.co.uk/example/HTTP POST表單處理與PHP
我希望它提交給http://www.testing-joestanford.co.uk/ 或其他地方,這並不重要,我。
我需要什麼URL才能處理表單並向我發送數據電子郵件(以最基本的形式),而無需重定向到該頁面(如果可能)。
難道是一些PHP如:
<?php
// create mail message to merchant
$subject = "Form data";
$title = "Example title.";
SendEmail("[email protected]", $subject, $title, false);
function SendEmail($mailto, $subject, $title)
{
$header = "From: [email protected]"."\r\n";
$header .= "Reply-To: [email protected]"."\r\n";
$header .= "MIME-Version: 1.0"."\r\n";
$header .= "Content-Type: text/plain; charset=utf-8"."\r\n";
$header .= "Content-Transfer-Encoding: 8bit"."\r\n";
$header .= "X-Mailer: PHP v".phpversion();
$message .= "Name: PS".$name."\r\n";
mail($mailto, $subject, stripslashes($message), $header);
}
?>
還是我吠叫完全錯了?
任何幫助非常感謝,謝謝。
我不確定我是否理解這個問題,您是否設置了表單的「action =」「'?否則,考慮'header('Location:');' –
Epodax
是的,表單被設置爲POST到http://www.testing-joestanford.co.uk/。我只是努力讓它給我發送提交的數據。謝謝。 –
您是否收到任何錯誤/警告(確保顯示錯誤,請參閱http://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display)? –