gpt4 book ai didi

php - 如何在 $_POST[] 中使用变量

转载 作者:可可西里 更新时间:2023-11-01 07:33:52 24 4
gpt4 key购买 nike

我需要遍历一堆动态生成的字段,但这不起作用:

$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[] 中?如果没有,我应该如何更新动态生成的字段?

最佳答案

$_POST[$var] or $_POST["cst_$var"]

关于php - 如何在 $_POST[] 中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2129171/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com