I have simple Database, which contains fields like ID, product_name, product_description, image, cost.
I have a dynamically generated form which I'm going to send using jQuery, what should I change in my JavaScript to pass to defined div the data which I got from my DB via PHP?
JavaScript Code:
$(function() {
    var number = 1;
    var contentToLoad = 'Defined structure';
    $('a.add').click(function(e) {
        e.preventDefault();
        $('#calc').append(contentToLoad);
        number++;
    });
    $('#calc').on('click', 'a.design_button', function(e) {
        e.preventDefault();
        $(this).parent().remove();
    });
});
--- UPDATE: I need a little help with merging two parts of JavaScripts to make it work. I need to put somehow that part:
var number = 1;
var contentToLoad = 'Defined structure';
$('a.add').click(function(e) {
  e.preventDefault();
  $('#calc').append(contentToLoad);
  number++;
});
where a.add i've replaced with submit button, inside this one
function add(data_array){
    $(document).on('submit', '#add', function()
    {
    var r_data = data_array;
    alert(r_data);
    ...
    });
}
but I can't make it work ;/
