我在遍历我的数据库检索结果时遇到了一点问题,我理解为什么我会遇到这个问题,但不太确定如何实现该解决方案,因为我的 PHP 不是最好的。我浏览了论坛,但找不到任何可以解决我的问题的东西。
从下面我的输出会给我 12 个结果,而我只想要 6 个结果,每个 2 项:对于每个循环计算数组中的 12 个项目,这是有道理的,所以它会输出 12 次,给我每个重复项。我如何最好地处理这个问题。
MyTable1: myTable2:
| ID | Name | | NameID | Details |
|--------|--------| |----------|-------------------|
| 0 | bob | | 0 | lives in the city |
| 1 | david | | 1 | lives in a caravan|
------------------- --------------------------------
我的 MSQLI 查询:
$qryRandom = "SELECT MyTable1.ID, MyTable2.Details
FROM MyTable1
INNER JOIN MyTable2
ON MyTable1.ID=MyTable2.NameID
ORDER BY RAND()
LIMIT 6;";
我的 PHP(一般示例)。
$resultR= $con->query($qryRandom) or die($mysqli->error.__LINE__);
while($row = mysqli_fetch_array($resultR, MYSQL_ASSOC))
{
foreach ( $row as $key=>$value ){ // loops 12 times here as there is 6 items x 2 values
echo $key.": ".$value."<br>";
}
}
结果输出:
bob lives in city
bob lives in city
David lives in caravan
David lives in caravan
john lives in the car
john lives in the car // doubles of each entry is my issue
// hope I was thorough and provided enough info for my scenario.