簡體   English   中英

我的聯系表格有什么問題,一旦我點擊提交按鈕,它就一直說發生錯誤! 請再試一次

[英]what is wrong with my contact form, once i click the submit button it keep saying Error occurd! Please try again

<?php

    $to = 'marivelcoresis@gmail.com';  // please change this email id

    $errors = array();
    // print_r($_POST);

    // Check if name has been entered
    if (!isset($_POST['name'])) {
        $errors['name'] = 'Please enter your name';
    }

    // Check if email has been entered and is valid
    if (!isset($_POST['email']) || !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) {
        $errors['email'] = 'Please enter a valid email address';
    }

    //Check if message has been entered
    if (!isset($_POST['message'])) {
        $errors['message'] = 'Please enter your message';
    }

    $errorOutput = '';

    if(!empty($errors)){                                                        

        $errorOutput .= '<div class="alert alert-danger alert-dismissible" role="alert">';
        $errorOutput .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';

        $errorOutput  .= '<ul>';

        foreach ($errors as $key => $value) {
            $errorOutput .= '<li>'.$value.'</li>';
        }

        $errorOutput .= '</ul>';
        $errorOutput .= '</div>';

        echo $errorOutput;
        die();
    }



    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $from = $email;
    $subject = 'Contact Form : Texas Lawers Responsive HTML5 Template';

    $body = "From: $name\n E-Mail: $email\n Message:\n $message";


    //send the email
    $result = '';
    if (mail ($to, $subject, $body)) {
        $result .= '<div class="alert alert-success alert-dismissible" role="alert">';
        $result .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
        $result .= 'Thank You! I will be in touch';
        $result .= '</div>';

        echo $result;
        die();
    }

    $result = '';  
    $result .= '<div class="alert alert-danger alert-dismissible" role="alert">';
    $result .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
    $result .= 'Something bad happend during sending this message. Please try again later';           
    $result .= '</div>';

    echo $result;
    die();


?>

乍一看,根據提供的信息,我的建議是改變

$email = $_POST['email'];

$email = filter_var($_POST['email'], FILTER_VALIDATE_EMAIL);

除此之外,最好過濾所有$_POST變量,因為這些檢查不足以清除隱藏在文本中的任何惡意代碼。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM