如何在mysql数据库php中添加多个数组?

时间:2017-11-30 11:37:08

标签: php mysql arrays

我有一个表单,用于获取产品的数据库条目。我在表单中添加了多行产品,我需要数据库插入方面的帮助。 我希望将数据添加到一行中,并且我有多个数组。

<form id='students' method='post' name='students' action='add-      
    <div class="table-responsive">
        <table class="table">
            <tr>
                <th><input class='check_all' type='checkbox' onclick="select_all()"/></th>
                <th>S. No</th>
                <th>BarCode</th>
                <th>HSN</th>
                <th>Product Name</th>
                <th>MRP</th>
                 <th>CGST</th>
                 <th>SGST</th>
            </tr>
            <tr>
                <td><input type='checkbox' class='case'/></td>
                <td><span name='snum[]' id='snum'>1.</span></td>
                <td><input class="form-control" type='text' id='countryname_1' name='countryname[]'/></td>
                <td><input class="form-control" type='text' id='country_no_1' name='country_no[]'/></td>
                <td><input class="form-control" type='text' id='phone_code_1' name='phone_code[]'/></td>
                <td><input class="form-control" type='text' id='country_code_1' name='country_code[]'/> </td>
                <td><input class="form-control" type='text' id='cgst_1' name='cgst1[]'/> </td>
                    <td><input class="form-control" type='text' id='sgst_1' name='sgst1[]'/> </td>
            </tr>
        </table>
        <input type="submit" value="submit">
        <button type="button" class='btn btn-danger delete'>- Delete</button>
        <button type="button" class='btn btn-success addmore'>+ Add More</button>
    </div>
</form>

1 个答案:

答案 0 :(得分:0)

如果我正确理解您的问题,您正在尝试将数组存储在数据库中。它本身是不可能的,但是你可以在获取数据时使用serialize()函数和unserialize()。

PHP manual