Login info is saved in a Users table
UsersTable:
UserID
FullName
Address
.
.
.
I have an application table that stores info about an application
ApplicationTableA:
ApplicationTableAID
UserID
FullName
Address
.
.
.
On (ADD) ApplicationFormA_add.php my goal is to copy FullName / Address from Users (Master) table to ApplicationFormA (Details) table.
Anyone have example code to copy data from a master table to one of its detail tables?
Thanks;
Ed Schneider