My contact form sends blank body_messages

前端 未结 1 1456
时光取名叫无心
时光取名叫无心 2021-01-13 00:40

I’m new to PHP so bear with me. My form is sending empty emails when I press submit. Any help would be great.

This is my form:

    
1条回答
  •  礼貌的吻别
    2021-01-13 01:04

    Try this

     
        

    Edit:(Debug)

    $name = $_POST['name'];
    $company = $_POST['company'];
    $email = filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL);
    $content = $_POST['content'];
    
    echo $name.$comapny.$email.$content;exit; // check whether the values are posted successfully or not
    

    0 讨论(0)
提交回复
热议问题