gpt4 book ai didi

php - 如何在没有while循环的情况下查看表值?

转载 作者:行者123 更新时间:2023-11-29 07:18:15 25 4
gpt4 key购买 nike

while($row = mysql_fetch_assoc($interst_list_select_result))

这是一项具有多种值(value)的工作我需要在没有 while 循环的情况下工作,但我需要表中的所有值。我该如何工作??

最佳答案

您可以使用foreach循环。

$stmt = $db->prepare('SELECT * FROM tbl');
$stmt->execute();
$rows = $stmt->fetchAll();
foreach ($rows as $row => $val){
echo $val['colname1'],' ',$val['colname2'];
}

关于php - 如何在没有while循环的情况下查看表值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37099116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com