Hello,
I was wondering if you could add product fields dynamically , with values that I get via $ _POST.
example:
'
<? php
name_product_1 $ = $ _POST ["name_product_1"];
qty_product_1 $ = $ _POST ["qty_product_1"];
price_product_1 $ = $ _POST ["price_product_1"];
name_product_2 $ = $ _POST ["name_product_2"];
qty_product_2 $ = $ _POST ["qty_product_2"];
price_product_2 $ = $ _POST ["price_product_2"];
?>
'
from these values you should be able to get 2 product fields in the form. is it possible?