0

我需要以下代码中的一些建议。

var count = 1;
$(function(){
    $('#addmore').click(function(){
        count += 1;
        $('ul').append("<li><input type='text' id='hd"+count+"' name='hd"+count+"' value='heading' onClick='this.select();'> <input type='text' id='amount"+count+"' name='amount"+count+"' value='amount' onClick='this.select();'></li>");
//      return false;
    });
});

我应该使用什么确切的 php 代码将所有输入提交到我的 mysql 测试表中。

<button id="addmore">+</button>
<form id="myForm" name="myForm" action="" method="post" onSubmit="return false;">
<ul>
    <li><input type="text" id="hd1" name="hd1" value="heading" onClick="this.select();">
    <input type="text" id="amount1" name="amount1" value="amount" onClick="this.select();"></li>
</ul>
<input type="submit" value="Submit" id="submit" name="submit">
</form>

<?php
if(isset($_POST['submit'])){

echo "h";
};
?>

请记住,我已经测试了带有“标题”和“金额”两个字段的表。


if(isset($_POST['submit'])){
    foreach($_POST['hd'] as $hds){
        echo $hds;
        mysqli_query($con,"INSERT INTO test (hdg) VALUES ($hds)");
    };
};

它没有将数据添加到我的表中

4

1 回答 1

2

用于属性而不是数字[]name

<li><input type="text" id="hd1" name="hd[]" value="heading" onClick="this.select();">

在服务器端,您将拥有一组值。

$hd = $_POST['hd']; // Returns an array
于 2013-05-28T03:19:21.327 回答