在PHP后未定义指数(Undefined index in PHP post)

2019-07-29 03:27发布

我采取的形式和jQuery的做变量进行安全检查,然后把它传递给在阿贾克斯一个PHP文件,但我得到这个通知

注意:未定义指数:your_name在C:\ XAMPP \ htdocs中\ process.php上线3什么是错在这里注意:未定义指数:your_email在C:\ XAMPP \ htdocs中\线路7 process.php

这里是我的jQuery代码在这里

        $(".button").click(function(){
    $('.error').hide(); 
    var your_email=$("input#your_email").val(); 
    if(your_email ==""){
        $("label#youremail_error").show();  
        $("input#your_email").focus(); 
        return false; 
    }
    var your_name=$("input#your_name").val(); 
    if(your_name==""){
        $("label#yourname_error").show();
        $("input#your_name").focus(); 
        return false; 
    }
    var friends_email=$("input#friends_email").val(); 
    if(friends_email==""){
        $("label#friendsemail_error").show(); 
        $("input#friends_email").focus(); 
        return false; 
        }
    var friends_name=$("input#friends_name").val(); 
    if(friends_email==""){
        $("label#friendsname_error").show(); 
        $("input#friends_name").focus(); 
        return false;
        }
        var dataString = 'your_email=' + your_email + '&friends_email=' + friends_email + '&your_name=' + your_name + '&friends_name=' + friends_name; 
        //alert(dataString); 
        $.ajax({
        type: "POST", 
        url:"process.php",
        data: dataString, 
        success: function(ret) {
            alert(ret); 
            //alert("thank you for signing up"); 
        },

这里是我的PHP

   <?php
include 'inc/class.phpmailer.php';
if(isset($_POST['your_name'])){
    $your_name=$_POST['your_name'];
    }
else{
    echo "something is wrong with your name having:";
    var_dump($_POST['your_name']);
    echo "<br/>"; 
    }
if(isset($_POST['your_email'])){
    $your_email=$_POST['your_email']; 
}
else{
    echo "something is wrong with your email having:";
    var_dump($_POST['your_email']); 
    echo "<br/>"; 
    }
if(isset($_POST['friends_name'])){
    $friends_name=$_POST['friends_name']; 
    }
else{
    echo "something is wrong with friends name having:"; 
    var_dump($_POST['friends_name']);
    echo "<br/>"; 
    }

我不知道为什么我收到这个通知显然,我的$ _POST值未设置。
我在我的智慧与这一个结束。 你知道为什么/时,未设置$ _ POST?

Answer 1:

你是第一个让your_name的值,然后检查是否存在

$your_name=$_POST["your_name"];  <--- this line should be inside an if isset
if(!isset($_POST['your_name'])){

像做以下

if (isset($_POST['your_name'])) {
   $your_name = $_POST['your_name'];
   // do whatever here
}


Answer 2:

$ _ POST [“your_name”]当“your_name”不贴的原因不存在..你必须检查它是否存在第一,然后将其分配给变量不能被赋值给变量$ your_name的..代码应该是这样的:

if (isset($_POST['your_name'])) {
   $your_name = $_POST['your_name'];
}
else { 
   echo "something is wrong here";
}


Answer 3:

没有看到任何问题,在你的js代码,但你的PHP代码有缺陷律

 <?php
include 'inc/class.phpmailer.php';

//it can be like that or
if(!isset($_POST['your_name'])){
    echo "something is wrong here"; 
}
else{
    $your_name=$_POST["your_name"]; 
}

注:PHP错误处理应该处理得当,也可以禁用PHP警告



文章来源: Undefined index in PHP post