我无法从数组中获取值
Array
(
[0] => id
[column_name] => id
)
Array
(
[0] => businessType
[column_name] => businessType
)
Array
(
[0] => name
[column_name] => name
)
Array
(
[0] => city
[column_name] => city
)
...
我从
mysql_query("
SELECT column_name
FROM information_schema.columns
WHERE table_name='businessUpgrade'
")
在我的while循环中
while($row = mysql_fetch_array($result)){
while($column = mysql_fetch_array($colName)){
if($row[$i] == 1){
//here comes the missing part
}
$i++;
}
}
我尝试了不同的东西,但根据 print_r,我需要获取的值具有相同数量的 id (0)。有什么办法,我可以从这个数组中获取值。我发现我应该用 foreach 来做,但不知何故,我尝试的一切都失败了。