I have two tables:
Items
- itemNumber (PK)
- title
- subject
Barcodes
- barcodeNumber (PK)
- dateAdded
- itemNumber (FK)
I have a form to read the info from the user, but I want the user to be able to insert as many barcodes for each item in the same form. How can I accomplish this with PHP and HTML?
I am attempting to have a button to submit the first barcode, but how do I make my text field to be clean and ask for the second, third, etc. I was also thinking to have this running until the user clicks on a "done" button to ask for a different item.
Please let me know if more details are needed.
Thank you!