私は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);
}