index.php
₺
cart_db.php
include 'baglan.php';
function addToCart($product_item) {
}
function removeFromCart($product_id) {
}
function incCount($product_id) {
}
function decCount($product_id) {
}
if (isset($_POST["p"])) {
$islem = $_POST["p"];
if ($islem == "addToCart") {
$id = $_POST['product_id'];
echo $id;
} elseif ($islem == "removeFromCart") {
}
}
// AddToCart
/*
*
* urun id al
* card_db.php dosyasına post et
* veritabanından ürün bilgilerini al
* Session'da ki sepete ekle
* Sepeti tekrar hesapla
*
*/
?>
custom.js
$(document).ready(function(){
$(".addToCartBtn").click(function () {
var url = "http://localhost/kofte/cart_db.php";
var data {
p : "addToCart",
product_id : $(this).attr("product-id")
}
$.post(url, data, function (response) {
alert(response);
})
})
})