让我们想象一下我得到了这个:
index.php 生成的表单具有不可预测的输入数量,这些输入具有某些 ID/名称和不同的值,可以由用户编辑并由 script.php 保存
<form action="script.php" method="post">
<input id="1" name="1" type="text" value="1"/>
<input id="24" name="24" type="text" value="2233"/>
<input id="55" name="55" type="text" value="231321"/>
</form>
脚本.php:
在这里,我需要获取类似于 index.php 生成的所有输入的数组,并保存与其 id/name 对应的每个值。
有没有办法做到这一点?