dongzhaiqiang6108 2018-03-07 10:44
浏览 57
已采纳

注意:未定义的索引:php中的用户名和密码[重复]

I'm working with db connection, from what it looks like to me when I finish writing it on sublime there's no error. so, I decided to write localhost/*folder*/*filename*.php in my browser to check the connection and suddenly the browser display;

Notice: Undefined index: username in C:\xampp\htdocs\Login\login.php on line 4 Notice: Undefined index: pincode in C:\xampp\htdocs\Login\login.php on line 5 {"success":false}

<?php
    $con = mysqli_connect("localhost", "root", "", "test");

    $Username = $_POST["username"];
    $Pincode = $_POST["pincode"];

    $statement = mysqli_prepare($con, "SELECT * FROM users WHERE username = ? AND pincode = ?");
    mysqli_stmt_bind_param($statement, "ss", $Username, $Pincode);
    mysqli_stmt_execute($statement);

    mysqli_stmt_store_result($statement);
    mysqli_stmt_bind_result($statement, $id, $Username, $Pincode);

    $response = array();
    $response["success"] = false;  

    while(mysqli_stmt_fetch($statement)){
        $response["success"] = true;  
        $response["id"] = $id;
        $response["username"] = $Username;
        $response["pincode"] = $Pincode;
    }

    echo json_encode($response);
?>
</div>
  • 写回答

3条回答 默认 最新

  • dppi5167 2018-03-07 10:53
    关注

    You want to check if Username and pincode were sent before querying the db. If they are not passed then your query doesn't have to be run.

    if(isset($_POST['username']) && isset($_POST['pincode'])){
       $con = mysqli_connect("localhost", "root", "", "test");
    
       $Username = $_POST["username"];
       $Pincode = $_POST["pincode"];
    
       ... etc.
    } else {
       echo "Username or pincode missing";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法