我在堆栈上寻找过类似的东西,但没有完全一样的东西。
我(想我)需要在循环中生成一个唯一的 MySQL 查询,因为每次迭代都需要查找不同的表。循环来自一个爆炸的 $_GET 数组。
问题是基于循环迭代创建一个不同命名的 mysql 查询。我已经在 $var 名称不同但它不起作用的地方完成了它,我认为是因为它是一个字符串而不是一个变量?
任何帮助表示赞赏
$temps = explode(",", $_GET['temps']);
$tempCount = count($temps);
for ($i=0; $i<$tempCount; $i++)
{
/*'normal' database lookup
$check = mysql_query("SELECT * FROM _db_".$temps[$i]."");
$checks = array();
while ($row = mysql_fetch_assoc($check)) {
$checks[] = $row;
}*/
//here's where I'm trying to build a 'dynamic' lookup for each loop iteration
$checkTemp=$check.$temps[$i];
$checkTempArray=$check.$temps[$i].'Array';
$checkTemp = mysql_query("SELECT * FROM _db_".$temps[$i]."");
$checkTempArray = array();
while ($row = mysql_fetch_assoc($checkTemp)) {
$checkTempArray[] = $row;
}
}