gpt4 book ai didi

php - 如何使用一个查询从 mysql 中选择多行并在 php 中使用它们

转载 作者:可可西里 更新时间:2023-11-01 06:31:31 25 4
gpt4 key购买 nike

我目前有一个如下图所示的数据库。

enter image description here

其中有一个查询选择number1等于1的行。当使用

mysql_fetch_assoc()

在 php 中我只得到第一个有没有办法得到第二个?就像通过一个维度数组一样

array['number2'][2] 

或类似的东西

最佳答案

重复调用 mysql_fetch_assoc。它记录在 PHP 手册中。

http://php.net/manual/function.mysql-fetch-assoc.php

// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
echo $row["userstatus"];
}

如果需要,您可以使用它来构建多维数组以供脚本的其他部分使用。

关于php - 如何使用一个查询从 mysql 中选择多行并在 php 中使用它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6481806/

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