duandingqi9442 2014-12-05 01:28
浏览 40
已采纳

id in where子句未定义的索引

I'm trying to append some data into an array if it has an id of another table, however I'm getting this:

Undefined index: id

This is my code:

$sql = mysqli_query($mysqli, 'SELECT * FROM users');
$rows = [];

while ($r = mysqli_fetch_assoc($sql)) {
    $rows[] = $r;
    $sql2 = mysqli_query($mysqli, "SELECT * FROM skills WHERE id = '" . $rows['id'] . "'");
    while($r2 = mysql_fetch_assoc($sql2)) {
        $rows[]['skills'] = $r2;
    }
}


print(json_encode($rows));

This part is where I'm having trouble at:

$sql2 = mysqli_query($mysqli, "SELECT * FROM skills WHERE id = '" . $rows['id'] . "'");
while($r2 = mysql_fetch_assoc($sql2)) {
    $rows[]['skills'] = $r2;
}

What am I doing wrong?

  • 写回答

3条回答 默认 最新

  • dpruwm6206 2014-12-05 01:31
    关注

    The code $rows[] = $r means add the value of $r to the end of $rows. So the array becomes:

    Array
    (
        [0] => Array
            (
                [id] => 1
            )
    
    )
    

    If you want to access the id property, either use $rows[0]['id'] or $r['id'].

    EDIT:

    Also note that in the code snippet you use mysql_fetch_assoc instead of mysqli_fetch_assoc.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 怎么改成循环输入删除(语言-c语言)
  • ¥15 安卓C读取/dev/fastpipe屏幕像素数据
  • ¥15 pyqt5tools安装失败
  • ¥15 mmdetection
  • ¥15 nginx代理报502的错误
  • ¥100 当AWR1843发送完设置的固定帧后,如何使其再发送第一次的帧
  • ¥15 图示五个参数的模型校正是用什么方法做出来的。如何建立其他模型
  • ¥100 描述一下元器件的基本功能,pcba板的基本原理
  • ¥15 STM32无法向设备写入固件
  • ¥15 使用ESP8266连接阿里云出现问题