for ($i = 0; $i <= ${"ConteggioColonneTabella".$NomeTabella}; $i++) {
${'record'.$i} = addslashes($_POST['record'].$i);
}
看看
addslashes($_POST['record'].$i);
这是不正确的,我知道,但我无法弄清楚获取POST变量的正确语法是什么。
=================编辑==================
这在循环之外工作
$i = 1;
${'record'.$i} = addslashes($_POST[record.$i])
只获得一个结果
这在循环中不起作用,没有结果
for ($i = 1; $i <= 6; $i++) {
${'record'.$i} = addslashes($_POST['record'].$i);
}