PHPスクリプトを拡張するのに助けが必要です。必要なフィールドとサインアップフォーム内の電子メールフィールドの検証が必要です。必要なフィールドと検証でPHPフォームを拡張
これは私のコードですが、別のifとechoコードを使用しようとしましたが、この中で何も動作しません。
コードが動作<?php
$email = $_POST['email'];
$from = $email;
$to = "[email protected]";
$subject = "SIGN UP";
$emailbody = "";
$emailbody .= "Email: " . $email . "\n";
$header = "";
$header .= "From:" . $from . " \n";
$header .= "Content-Type:text/plain;charset=utf-8";
// Sending message
$success = mail($to, $subject, $emailbody, $header);
if ($success){
print "<meta http-equiv=\"refresh\" content=\"0;URL=confirmation_signup.html\">";
}
else{
print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
}
?>
、電子メールが配信されますが、フィールドが記入されていない場合、フォームは成功ではありません。事前にありがとうございます。
私の回答は役に立ちますか? – Hassaan