我在尝试在表单中发送多维数组时遇到问题。我在第二个foreach
收到错误:
foreach($basearray as $index1 => $value1) {
foreach ($value1 as $index2 => $finalvalue) {
echo '<input type="hidden" name="horario[' . $index1 . ']" value="' . $finalvalue . '">';
}
}
我很确定问题是生成名称,但不知道该怎么做。
感谢任何帮助:)