Еще раз со своей измучанной проблемой... переделал код js как вы сказали:
$('document').ready(function(){
function addtoCart(itemId){
console.log("js-addToCart()");
$.ajax({
type: 'POST',
async: false,
url:"../send/"+itemId+'/',
succes: function(data){
window.location.href = url?page=cart;
}
});
}
});
Все равно зависает на странице add_to_cart...
подскажите как переделать функцию php:
function add_to_cart($id){
$id = $_GET['id'];
if(isset($_SESSION['cart'][$id])){
$_SESSION['cart'][$id]++;
return true;
} else{
$_SESSION['cart'][$id] = 1;
return true;
}
return
Чтоб удалить из кода SWITCH...