输入数组中的数组

发布于 2024-10-02 23:30:24 字数 126 浏览 5 评论 0原文

是否可以在数组中创建一个数组用于输入?

所以:

<input type="text" name="array[array[]]" />

谢谢。

Is it possible to create an array in an array for inputs?

So:

<input type="text" name="array[array[]]" />

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毁梦 2024-10-09 23:30:24

二维数组是数组中的数组。很多这样的问题...

<input type="text" name="import[fields][0]" >

A two dimensional array is an array inside an array. Many questions like this...

<input type="text" name="import[fields][0]" >
纵山崖 2024-10-09 23:30:24
 In HTML

    <input type="text" name="import[fields][0]" >
    <input type="text" name="import[fields][1]" >
    <input type="text" name="import[fields][2]" >
 IN PHP
    <?php
    if ( isset($_POST['submit']) )
    {
        print_r($_POST['field']); 
    }
    ?>

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="field[one][1]" />
<input type="text" name="field[one][2]" />
<input type="text" name="field[one][3]" />
<br /><br />
<input type="text" name="field[two][1]" />
<input type="text" name="field[two][2]" />
<input type="text" name="field[two][3]" />
<br /><br />
<input type="submit" name="submit" />
</form>
 In HTML

    <input type="text" name="import[fields][0]" >
    <input type="text" name="import[fields][1]" >
    <input type="text" name="import[fields][2]" >
 IN PHP
    <?php
    if ( isset($_POST['submit']) )
    {
        print_r($_POST['field']); 
    }
    ?>

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="field[one][1]" />
<input type="text" name="field[one][2]" />
<input type="text" name="field[one][3]" />
<br /><br />
<input type="text" name="field[two][1]" />
<input type="text" name="field[two][2]" />
<input type="text" name="field[two][3]" />
<br /><br />
<input type="submit" name="submit" />
</form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文