Sepet değerlerini almak için [kapalı]

0 Cevap php
session_start();
if(isset($_REQUEST['action']) && $_REQUEST['action']!="")
if ($action == "addToBasket")
{
    $rmrradio1 = 3;
    $rmrradio2 = 5.5;
    $rmrradio2 = 16;
}

 

$(document).ready(function() { 
    $("input[type='radio']").click(function() { 
        var price = $(this).attr("value");
        var name =  $(this).attr("name");
        add_payment_value(price,name); 
    });  
});

function add_payment_value(price) { 
    // here you can use $.ajax function to add your 'price value' to your cart 
    $.ajax({ 
        type: "POST", 
        url: "make-payment.php"// file where you can add price to your database 
        data: "rmr"=+price+" &action=addtobasket ", 
        success: function(){} // return something on success 
    }); 
}  

Ben böyle bir kod yazdım. Bu bir alışveriş sepeti sitesi için. Radyo düğmesini tıkladığınızda sadece sepet ile katma değer yukarıdaki (benim sepeti eklemek) ve aynı zamanda i ben de bilmiyorum, bu kod doğru ya da değil jquery hakkında bilmek istiyorum. Ama benim projeyi uygulamak için biraz bir yardıma ihtiyacım var. Herhangi biri bana doğru kodu verebilir. Maalesef benim q belirsiz sesler.

0 Cevap