$P Key array只打印符合WHERE子句的数据库的第一行,为什么不显示符合WHERE子句的所有行,我不想把它放在任何循环中,我只需要一个所有行的P}Key数组。
$getPKey = "SELECT P_Key FROM likersTable WHERE executed=0";
$PKeyDetails = mysqli_query($dbConnect,$getPKey)
or die('Some error in post id');
$pKeyArray = mysqli_fetch_array($PKeyDetails);
print_r($pKeyArray);
最佳答案
您需要为每一行调用mysqli_fetch_array()
。
while ($pKeyArray = mysqli_fetch_array($PKeyDetails)) {
print_r($pKeyArray);
}