çoğalabilen input'a class olarak bunu tanımla ".my-input"
var total = 0;
$(".my-input").each(function() {
total += parseFloat($(this).val());
});
console.log(total);
$.ajax({
url: "your-php-file.php",
type: "POST",
data: {total: total},
success: function(response) {
console.log(response);
} });