ai didi

php - 用于从数组获取数据的 while 循环不起作用

转载 作者:行者123 更新时间:2023-11-29 22:33:04 24 4
gpt4 key购买 nike

$sub_id=$_POST['sub_id'];
$sql_unit_list="select link_id,unit,file_name from links where sub_id='$sub_id'";
$res_unit_list=mysql_query($sql_unit_list);

if($res_unit_list)
{

while($data_list=mysql_fetch_array(mysql_query($sql_unit_list)))
{
echo $data_list[0];
}

}

我写了这段代码,我无法找出为什么 while 循环不起作用。它正在执行 if{...} 但“if”内的 while 循环不起作用

最佳答案

使用以下代码更改您的代码,

$sub_id=$_POST['sub_id'];
$sql_unit_list="select link_id,unit,file_name from links where sub_id='$sub_id'";
$res_unit_list=mysql_query($sql_unit_list);

if($res_unit_list)
{

while($data_list=mysql_fetch_array($res_unit_list))
{
echo $data_list[0];
}

}

希望这能起作用。

关于php - 用于从数组获取数据的 while 循环不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29669312/

24 4 0
文章推荐: android - 如何确保服务每天早上 9 点开始,晚上 9 点停止?
文章推荐: javascript - 为什么 "this"指向 Javascript 递归函数中的其他内容?
文章推荐: javascript - 试图理解 evercookie 中的代码结构
文章推荐: javascript - nodejs - util.inspect 对 showHidden 的说明
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com