I have a table called invoice_details consisting of : id invoice_id product_id product_name quantity price
I have a form field that allows input of the product name,qty,etc.
I want to add a column that will be called "room". The script I have now auto generates more form fields as I need them, in which I could add "room" and specify within the form field, but I want to have the following workflow :
What web technologies do I need to research to be able to achieve the above result?
Incidentally - you might want to look at InteractJS which is designed to handle the drag and drop your're looking for - you just have to then AJAX the data back to your PHP server for processing.
Good luck!