PHP中的HTML联系我们表格

时间:2017-06-30 20:58:15

标签: php html forms

我已经尝试过使用PHP联系我们表单,现在提交时,表单中未填写的用户数据应该引导用户重新填写。所以我目前的代码是:

 <?php
  $all = 'All fields are required, please fill <a href="\">the form</a> again.'
$action=$_REQUEST['action'];
if ($action=="")    /* display the contact form */
    {
    ?>
    <form  action="" method="POST" enctype="multipart/form-data">
    <input type="hidden" name="action" value="submit">
    Your name:<br>
    <input name="name" type="text" value="" size="30"/><br>
    Your email:<br>
    <input name="email" type="text" value="" size="30"/><br>
    Your message:<br>
    <textarea name="message" rows="7" cols="30"></textarea><br>
    <input type="submit" value="Send email"/>
    </form>
    <?php
    } 
else                /* send the submitted data */
    {
    $name=$_REQUEST['name'];
    $email=$_REQUEST['email'];
    $message=$_REQUEST['message'];
    if (($name=="")||($email=="")||($message==""))
        {
        echo $all;
        }
    else{       
        $from="From: $name<$email>\r\nReturn-path: $email";
        $subject="Message sent using your contact form";
        // mail("email@email.com", $subject, $message, $from);
        echo "Email sent!";
        }
    }  
?>

现在由于某些原因,我使用 All fields are required, please fill <a href="\">the form</a> again.它并不隐藏自己 它显示我觉得很奇怪?

Here is the live link to further explain

1 个答案:

答案 0 :(得分:0)

我认为你的代码有错误, 第二个字符串应该用&#34;;&#34;

填充