I am creating a record by submitting data from a form by doing usual
INSERT INTO myTbl_1 (item) VALUES ('$newItem')
When a record is created a unique ID is assigned to that row.
Now I also need to update myTbl_2 with that new Unique ID that was assigned to the new line entry.
It am trying to accomplish it without adding extra steps, like clicking additional buttons.
Any suggestions?