私はphpコードのこのセクションを持っています:
$dcs = mysql_query("SELECT `locations.l_name`, `locations.location_id`
FROM `locations`, `cabinet`
WHERE `locations.location_id` = `cabinet.datacentre_id`
GROUP BY `locations.location_id`
ORDER BY `locations.l_name`");
while ($row = mysql_fetch_array($dcs)) {
echo '<option value="' .$row['location_id']. '">' .htmlspecialchars($row['l_name']). '</option>'; }
しかし、実行すると次のエラーが発生します。
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource
これはコードではなく、データベースの問題であると確信しています..問題の可能性はありますか? または、何に注意する必要がありますか?