如何将多个 SQL 结果放入数组中

我无法让我的脚本工作,我不明白为什么。我想获取所有 SQL 结果并将它们放入一个数组中。我当前的脚本只返回一个结果。


我知道我需要使用循环,但我只是不知道如何将它与当前脚本集成。我已经阅读了 50 多篇文章,但我仍然无法工作。


    <?php

$sql = "SELECT * FROM cart WHERE sess_id = '$sess_id'";

$result = mysqli_query($conn, $sql);

$count= mysqli_num_rows($result);      

$items= array();

    

if (mysqli_num_rows($result) > 0) {

    // output data of each row

  

   while($row = mysqli_fetch_assoc($result)) {

       for($i=0;$i<$count;$i++)

    {  

    $items = "{sku: "."'".$row["prod_sku"]."'".", quantity : ".$row["prod_qty"]."}, <br>";

     }

                                              }

                                   }       

            echo $items."<br>";  

        ?>


开满天机
浏览 166回答 1
1回答

慕桂英546537

它既简单又简单,您不需要在 while 循环内使用 for 循环。请使用以下代码,希望对您有所帮助。$sql = "SELECT * FROM cart WHERE sess_id = '$sess_id'";$result = mysqli_query($conn, $sql);&nbsp; &nbsp;$items= array();if (mysqli_num_rows($result) > 0) {&nbsp; &nbsp; // output data of each row&nbsp; &nbsp; while($row = mysqli_fetch_assoc($result)) {&nbsp; &nbsp; &nbsp; &nbsp; $items[] = "{sku: "."'".$row["prod_sku"]."'".", quantity : ".$row["prod_qty"]."}, <br>";&nbsp; &nbsp; }}&nbsp;// to print the array use the following command// print_r($items);// to echo the $items variable, you may encode it by json&nbsp; &nbsp; &nbsp;&nbsp;echo json_encode($items);&nbsp;&nbsp;谢谢。
打开App,查看更多内容
随时随地看视频慕课网APP