getjson限制本地主机中的行数(xampp)

mkshixfv  于 2021-06-21  发布在  Mysql
关注(0)|答案(0)|浏览(191)

我换成了 XAMPP 从web服务器。使用 getJson 对从 mysql table。我发现在使用本地主机时,行数被限制为53行。同样的代码在web服务器上也能完美地工作。我试着把最大执行时间增加到5000,但没用。我的sql表有141行。

<?php
include('../conn.php');
 $sql = "SELECT test_name,amount FROM lab_test order by sl";
 $result = mysqli_query($conn,$sql)  or die( mysqli_error($conn));
 $i=0;
     while($row = mysqli_fetch_array($result))
     {
         $entry[$i][0]=$row['test_name'];
         $entry[$i][1]=$row['amount'];
         $i++;
     }
echo json_encode($entry);
?>

它把行数限制在53行

<?php
include('../conn.php');
 $sql = "SELECT test_name,amount FROM lab_test order by sl";
 $result = mysqli_query($conn,$sql)  or die( mysqli_error($conn));
 $i=0;
     while($i<=52)
     {
        $row = mysqli_fetch_array($result);
         $entry[$i][0]=$row['test_name'];
         $entry[$i][1]=$row['amount'];
         $i++;
     }
echo json_encode($
?>

这是我的电话号码

$(document).ready(function(){
    //dynamic population of lab tests
        $.getJSON("./ajaxLabTestTable.php", function(response){
            console.log("tests");
            $.each(response, function(){
                var tr="<tr>";
                var td0="<td class="+JSON.stringify("chk")+"><input type="+JSON.stringify("checkbox")+"></td>";
                var td1="<td>"+this[0]+"</td>";
                var td2="<td align="+JSON.stringify("right")+">"+this[1]+"</td></tr>";
                var opt = tr+td0+td1+td2; 
                $("#lab_tests").append(opt);
            });
        });
    });

它必须与配置文件有关。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题