联系表格死亡的白页

时间:2018-06-01 08:53:35

标签: php wordpress contact-form

当我尝试使用我的联系表单时,我的浏览器会崩溃并向我发送一个白页。我找到了原因,但我无法理解有什么不对。

//getting fields 
        $naam = $_POST['naam'];
        $email = $_POST['email'];
        $adres = $_POST['adres'];
        $postcode = $_POST['postcode'];
        $telefoon = $_POST['telefoon'];
        $iban = $_POST['iban'];
        $15 = $_POST['15'];
        $20 = $_POST['20'];
        $25 = $_POST['25'];
        $30 = $_POST['30'];
        $anderbedrag = $_POST['anderbedrag'];

        //message to webmaster

        $message = $naam;

        $message .= "jaarlijks bijdrage: ";
        if ($15 != null){
            $message .= '15,-';
        }
        if ($15 != null){
            $message .= '20,-';
        }
        if ($15 != null){
            $message .= '25,-';
        }
        if ($15 != null){
            $message .= '30,-';
        }
        if ($anderbedrag != null){
            $message .= $anderbedrag;
        }

1 个答案:

答案 0 :(得分:1)

来自docs

  

有效的变量名称以字母或下划线开头,后跟   任意数量的字母,数字或下划线。

因此,您的变量名称无效($15等)。

除此之外;始终在开发时启用错误报告。 Php会告诉你这个。

ini_set('display_errors', 1);
error_reporting(E_ALL);