javascript - 如何将数据插入具有多个同名输入的数据库中?

标签 javascript php arrays

你好 friend ,我有一个表单字段,我想在其中插入数据,该字段有四个字段,分别是 customer_id 、 field_name1 、field_name2 、 field_name3 、 问题是我想插入具有许多输入但输入名称相同的数据,例如 field_name1 field_name2 field_name3 ,首先没有输入,但是当我单击按钮添加合作伙伴详细信息时,这些输入将由 javascript 显示。 像field_name1,field_name2,field_name3可以重复十次,我想根据具有相同customer_id但不同字段名称的数字在数据库中插入数据,下面是我的代码,希望你理解。

这是我的代码

    <?php
$conn=mysqli_connect("localhost","root","","satya");
if(isset($_POST['submit'])){
    $customer_id=$_POST['customer_id'];
for ($ix=0; $ix<count($_POST['field_name1']); $ix++)
{
    $field_data = array(
        'field_name1' => $_POST['field_name1'][$ix],
        'field_name2' => $_POST['field_name2'][$ix],
        'field_name3' => $_POST['field_name3'][$ix],

    );
    $sql="INSERT INTO customer(customer_id,details1,details2,details3) VALUES('$customer_id','$field_name1','$field_name1','$field_name1')";
    $result=mysqli_query($conn,$sql);
    if($result){
        echo "data has been inserted";
    }
    else{
        echo "data could not be inserted";
    }
}
}
 ?>

<!DOCTYPE html>
<html>
<head>
    <title>test</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    </head>
<body>
    <form action="" method="post">
        <div class="form-group">
    <div class="row" style="margin-top: 20px">
        <div class="col-md-4" ></div>
    <div class="col-md-4">
        <label for="customer_id">Customer ID </label>
        <input type="text" class="form-control" name="customer_id" placeholder="customer_id">
    </div>
    <div class="col-md-4"></div>
       </div>
    <div class="row" style="margin-top: 20px;">
<div class="col-md-3">
        <label for="details1">details1 </label>
            </div>
    <div class="col-md-3">
        <label for="details2">details2</label>
        </div>
    <div class="col-md-3">
        <label for="details3">details3</label>
            </div>
            <div class="col-md-3">
                 <div>

        <a href="javascript:void(0);" class="add_partner btn btn-primary" title="Add Partner Details">Add Partner Details</a>
    </div>
</div>
    <div class="partner_wrapper" >

</div>
</div>
<div class="col-md-4"></div>
<div class="col-md-4">
        <button  type="submit" class="btn btn-primary" name="submit">Submit</button>
    </div>
    <div class="col-md-4"></div>
</form>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

</body>
</html>



<script>
$(document).ready(function(){



    var maxField = 10; //Input fields increment limitation
    var addButton = $('.add_partner'); //Add button selector
    var wrapper = $('.partner_wrapper'); //Input field wrapper
    var fieldHTML = '<span class="row"><div class="col-md-3"><input type="text" class="form-control"  name="field_name1[]" value=""/></div><div class="col-md-3"><input type="text" class="form-control" name="field_name2[]" value=""/></div><div class="col-md-3"><input type="text" class="form-control" name="field_name3[]" value=""/></div><button type="button" href="javascript:void(0);" class="remove_button btn btn-primary" title="Remove field">Remove</button></span>'; //New input field html 
    var x = 1; //Initial field counter is 1
    $(addButton).click(function(){ //Once add button is clicked
        if(x < maxField){ //Check maximum number of input fields
            x++; //Increment field counter
            $(wrapper).append(fieldHTML); // Add field html
        }
    });
    $(wrapper).on('click', '.remove_button', function(e){ //Once remove button is clicked
        e.preventDefault();
        $(this).parent('span').remove(); //Remove field html
        x--; //Decrement field counter
    });

});
</script>

最佳答案

为重复字段指定数组样式名称:

<input type="text" name="field_name1[]">

PHP 会将输入收集到数组中,因此 $_POST['field_name1'] 将是一个数组。然后你可以循环它们:

foreach ($_POST['field_name1'] AS $index => $field1) {
    $field2 = $_POST['field_name2'][$index];
    $field3 = $_POST['field_name3'][$index];

    // now you can insert all these values into the DB
}

关于javascript - 如何将数据插入具有多个同名输入的数据库中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51448993/

相关文章:

java - 内部类的通用数组创建编译错误

javascript - 使用 typescript 和默认值解构嵌套参数

javascript - jQuery 周期2 : move through slides on scroll

javascript - Oclick Javascript 函数不工作

javascript - 将 php 字符串作为 json 传递给 jquery 接收

javascript - JS - 构造数组 - SyntaxError : missing ] after element list

c - 从函数冲突类型返回数组

javascript - 使用 Jquery 检查输入中的空格字符

php - MySql 查询的分组输出

c++ - 二维数组(矩阵)内存分配烦恼