我想使用类似的代码
foreach($_POST[cat_id] as $key=>$val){
if($val){
$arr[cat_id] = $val;
$arr[porder] = $_POST['".$val."'];
$arr[store_user_id] =$_SESSION[uid];
}
}
但$_POST['".$val."']
不会涵盖任何价值,但在我的循环中动态输入名称可以任何人帮助我我想显示$_POST['".$val."']
其价值是动态的。我也用过$_POST['<?=$val?>']
,但是没用。。。求大神帮忙。。。