我有以下 HTML 表单,它是从 MySQL 数据库中的表动态生成的。
<form method="post" name="chapters" action="ChaptersUpdate.php">
<input type='text' name='id' value='{$row['id']}'>
<input type='text' name='name' value='{$row['name']}'>
<input type='password' name='password' value={$row['password']};>
<input type='submit'>
</form>
我正在寻找一种方法,以便在提交表单时,在 $_POST 中传递以下数据结构:
[chapter] => Array
(
[0] => Array
(
[id] => corresponding chapter ID
[name] => corresponding chapter name
[password] => corresponding chapter password
)
[1] => Array
(
[id] => corresponding chapter ID
[name] => corresponding chapter name
[password] => corresponding chapter password
)
)
我尝试了 name='chapter[][id]' / name='chapter[][name]' / name='chapter[][password]' 的各种组合,但收效甚微。数组数据结构永远不会像我想要的那样。
有任何想法吗?