我在這裏有問題,我需要這$_SESSION['cart']
東西 裏面的所有東西,並將它傳遞給jQuery使用它在一個php-ajax文件,我的問題是,如何做到這一點?
這就是我心目中
function myfunc()
{
//save cart to db of logged user
$("a.savecart").click(function(){
//how to assign the $_SESSION['cart'] into a js variable ?
$.ajax({
type: "POST",
url: "classes/ajax.cart.php",
data: //what to put here ?
success: function(data){
alert(data);
location.reload();
}
});
return false;
}
});
}
是的,這是一個關聯數組.. ..但我怎麼會在PHP的AJAX部分? – sasori
@sasori看我的編輯。 – xdazz
我的$ _SESSION [ '購物']包含這樣'陣列 數據( [1] => 1 [6] => 1 ) 1' – sasori