网站建设神州互动,怎么制作游戏app软件,织梦资源网模板,杭州 高端网站 开发我需要遍历一堆动态生成的字段,但这不起作用#xff1a;$population_density $_POST[$current_location_id];我有一个页面列表,其人口在一页上;我需要这样做,这样你就可以立刻更新它们.所以我使字段名称动态地对应于location_id.提交帖子时,我需要像这样迭代它们,但似乎你不能…我需要遍历一堆动态生成的字段,但这不起作用$population_density $_POST[$current_location_id];我有一个页面列表,其人口在一页上;我需要这样做,这样你就可以立刻更新它们.所以我使字段名称动态地对应于location_id.提交帖子时,我需要像这样迭代它们,但似乎你不能把一个变量放在帖子里.for ( $y_count 1 ; $y_count $zone_height; $y_count ) {for ( $x_count 1 ; $x_count $zone_width; $x_count ) {$result mysql_query(SELECT * FROM locations WHERE location_zone$zone_id AND x_location$x_count AND y_location$y_count );$current_location mysql_fetch_array( $result );$current_location_id $current_location[ID];$population_density $_POST[$current_location_id];$result mysql_query(UPDATE locations SET population_density$population_density WHERE ID$current_location_id );}}是否可以将变量放在$_POST []中如果没有,我该如何更新动态生成的字段