我有一个 PHP 页面,比如说 abc.php。我使用 jQuery/ajax 将变量“var_post”发布到另一个名为 abc_sql.php 的页面。但不幸的是,有时我会在下一页上看到该变量,有时却没有。知道这里有什么问题吗?
abc.php
代码片段:
$(document).ready(function () {
var grand_total = 0;
$("input").live("change keyup", function () {
$("#Totalcost").val(function () {
var total = 0;
$("input:checked").each(function () {
total += parseInt($(this).val(), 10);
});
var textVal = parseInt($("#min").val(), 10) || 0;
grand_total = total + textVal;
return grand_total;
});
});
$("#next").live('click', function () {
$.ajax({
url: 'abc_sql.php',
type: 'POST',
data: {
var_post: grand_total
},
success: function (data) {
}
});
});
});
abc_sql.php:
$total = $_POST['var_post'];
$sql = "INSERT INTO total_tab (total)VALUES('$total')";
if ($total > 0) {
$res = mysql_query($sql);
}