Ben bu var:
var postData = {};
$('#items tr').not(':first').each(function(index, value) {
var keyPrefix = 'data[' + index + ']';
postData[keyPrefix + '[index]'] = index;
postData[keyPrefix + '[supp_short_code]'] = $(this).closest('tr').find('.supp_short_code').text();
postData[keyPrefix + '[project_ref]'] = $(this).closest('tr').find('.project_ref').text();
postData[keyPrefix + '[om_part_no]'] = $(this).closest('tr').find('.om_part_no').text();
postData[keyPrefix + '[description]'] = $(this).closest('tr').find('.description').text();
postData[keyPrefix + '[quantity_input]'] = $(this).closest('tr').find('.quantity_input').val();
postData[keyPrefix + '[cost_of_items]'] = $(this).closest('tr').find('.cost_of_items').text();
postData[keyPrefix + '[cost_total_td]'] = $(this).closest('tr').find('.cost_total_td').text();
});
PHP bu göndermek için sonraki adım ne olacağını, ben PHP sayfasına gidin ve alınan sonuçları görmek için yeterlidir, çünkü Ajax kullanmak istemiyorum. Fikir kullanıcı presler "Önizleme" bu değerleri alır ve i yukarıdaki değerlerle dolduracaktır Fatura stil sayfası kurdunuz olacak bir PHP sayfası onları alacak zaman, bir tablo değerleri almak için mi?
Teşekkürler