Hello.
I have a table which includes order rows from webshop.
In the rows I have checkboxes, which tell if that row has been handled by customer.
I’m currently able to loop through the checkboxes telling me which ones of those are checked.
I want to also get values from order id’s and orderlines to tell database which row is handled.
So in the end, when user has checked his/her checkboxes, when he presses the submit button:
It gets the checkboxes from the rows that user has checked and imports that checkbox value into database where order id = order id in which customer checked and orderline = orderline in which customer checked.
How do I do this?