radyo düğmesi miktarı değerleri görüntülemek için nasıl

0 Cevap php

merhaba benim proje geliştiriyorum. nasıl ben onclick düğmesi için ajax fonksiyonu diyorsunuz.

If(isset($_POST) && ($_POST[‘GET_PAYMENT’] == ‘1’))
{

 $totalAmount = $_POST[‘GET_PAYMENT’]; //Total amount
 $checkbox_id = $_POST[‘VALUE’]; // The radio button value 

        /* Here get the amount values (3,5.5 or 10) from 

         Database based on the $checkbox_id and store it in

 $amount variable*/


 $total_amount = $amount + $totalAmount;


 Echo $total_amount;

}


$.ajax({
   type: "POST",
   url: "ajax.php",
   data: "GET_PAYMENT=1&VALUE=”+ checkboxVal,
   success: function(total_amount)
   {
 //Assigning the final value to the hidden value here
 $(‘#totalamount’).val(total_amount);  

 //Here changing the display of total amount
 $(‘#repair_total_amount’).html(“Total <span class="repair-finalamount-txt">&pound;&nbsp;”+ total_amount+”</span>”);

   }
 });

}

im bu kafa karıştırıcı: data: "GET_PAYMENT=1&VALUE=”+ checkboxVal, hangi eylem i give.this zorunda i radyo düğmesi addcart awith eklemek olacak tıkladığında içindir.

için herhangi bir

0 Cevap