我需要帮助弄清楚如何将表格行中的数据提交到 PHP 中进行处理。我需要它能够提交多行数据。有任何想法吗?
我这里有一张桌子。我希望能够检查该行并将数据提交给 php 以处理数据。它是一个 HTML 表格。我只想知道如何将变量传递给php,例如数组或其他东西
好吧,伙计们是这样的:
$("submit_btn").click(function () {
$('#diary tbody>tr input:checked').each(function() {
$.post('process.php',
data: "an array",
success: "data submitted");
}
});
我将如何获取数组中的表格行数据以提交它?(答案如下)
好的第 2 部分:
将表格行数据发送到 php.ini
jQuery代码:
rows = JSON.stringify(rows); // submit this using $.post(...)
alert(rows);
$.post('classes/process.php', rows, function(data) {
$('#results').html(data);
})
.error(function() { alert("error"); })
});
PHP代码:
<?php
$rowsArray = json_decode($_POST['rows']);
echo $rowsArray;
?>
错误:
Notice: Undefined index: rows in C:\...\classes\process.php on line 6