可能这将是一个简单的问题,但我没有处理它。这是我的复选框,如下所示:
<input name="msg_id[]" type="checkbox" id="msg3" value="3" />
<input name="msg_id[]" type="checkbox" id="msg2" value="2" />
<input name="msg_id[]" type="checkbox" id="msg1" value="1" />
<input name="msg_id[]" type="checkbox" id="msg15" value="15" />
<input name="msg_id[]" type="checkbox" id="msg14" value="14" />
我正在使用 $.post 方法发布值,如下所示:
$('body').on('click', '#not_read', function () {
var inputs = $("input[name='msg_id[]']").serialize();
$.post("user.php", {"not_read":1,"message_ids":inputs}, function(z) {$("#result").html(z)});
});
我想将检查的值发送到 user.php 并使用 foreach 循环我想更新检查消息的阅读状态。如下图。。
if (isset($_POST['not_read'])):
if (intval($_POST['not_read']) == 0 || empty($_POST['not_read'])):
redirect("index.php");
endif;
/* I don't know what I must write here.
$values = $_POST['message_ids'];
foreach($values as $row):
mysql_query("UPDATE messages SET read='0'WHERE id='".$row["id"]."'");
endforeach;
# Sure, it is not working...
*/
endif;
亲切的问候...