Foreach不在while循环中工作?

时间:2012-03-22 19:01:25

标签: php

我有一个MySQL数据库,我使用while循环从中获取信息。我也有一个数组,我想用foreach循环,但问题是当我尝试嵌入foreach而$ string中没有数据。 $ string变量在while循环之外工作,数据库没有任何问题。我需要改变什么才能循环使用?

while ($field = mysql_fetch_assoc($query)) 
{
foreach($string as $strings)
{
//code here
}
}

1 个答案:

答案 0 :(得分:3)

你的for循环是错误的。阵列应该是第一位的。

  foreach($strings as $string)