gpt4 book ai didi

html - 如何将html表数据插入mysql数据库

转载 作者:行者123 更新时间:2023-11-29 07:55:27 27 4
gpt4 key购买 nike

我有这样的 html 表格

<table style="width:300px">
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
</table>

我需要使用表单提交将这些html数据添加到mysql表中(这不是实际的表)。这是我的图片链接

http://s11.postimg.org/phkhh2z6b/Untitled.png

我使用此 JQuery 代码从表单添加此表数据

$(document).ready(function(){
$('#details').on('click', '.remove', function() {
$(this).closest('tr').remove();
})

$('#submit').on('click',function(){
var st = '';
$('#trtform input[type=text],select,input[type=checkbox]:checked').each(function(){
st = st+ '<td width="150" align="center">'+$(this).val()+'</td>';
$(this).val('');
});
var remove = $('<td />', {text : 'X', 'class': 'remove'});
$('#details').append( $('<tr />').append(st, remove) );
});
});

最佳答案

您需要为表创建输入字段。并将整个表格放入一个表格中。使用提交按钮将表单内的所有内容发送到脚本(这里是 PHP 中的内容)

在您的示例中:

 <form id="mydata" method="POST" action="save.php">
<table style="width:300px">
<tr>
<td><input name="name" value="Peter"></td>
<td><input name="lastname" value="Test"></td>
<td><input name="age" value="80"></td>
</tr>
...
</table>

<input type="submit" value="send Values to my save script">
</form>

在 save.php 中,您可以轻松读出值

$name = $_POST['name'];

然后将值保存到数据库中。

关于html - 如何将html表数据插入mysql数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25264269/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com