有人可以指出我确定我的代码中有一个愚蠢的明显错误吗?我的 while 循环中的字符串“string”显示了正确的次数,但没有显示 row[0] 中的结果。
if (!isset($_GET['city']) & !isset($_GET['county'])) {
$getResults = "SELECT DISTINCT region FROM `locations` WHERE country = 'England'";
echo "No region or county set";
if ($result = $mysqli->query($getResults)) {
echo "Found results";
while ($row = $result->fetch_assoc()) {
echo "string";
echo $row[0];
}
}
}