Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在接受一系列文本框,所有这些文本框都具有相同的名称。例如,其中一个是这样的:
<input type=text name="serial[]"> <input type=text name="serial[]"> <input type=text name="serial[]"> <input type=text name="serial[]">
然后我把它们带进来:
$altSerial = $_POST['serial'];
但我不断收到变量未定义错误。
有小费吗?
表格有问题。您发布的 HTML 是正确的(或者它没有任何明显的问题) - 您应该在其中获取一个数组$_POST['serial']
$_POST['serial']
也发布它们,也许你还没有设置method="POST",或者类似的问题。
method="POST"