[SOLVED] Â Multiple Inserts for all users |
4/26/2019 12:01:45 PM |
PHPRunner General questions | |
T
Tempus_Erus author
I have a table of trainees (trainee table) which consists of individuals - unsurprisingly! 😊 |
|
M
|
MikeT 4/30/2019 |
Do you have a join (m:n) table between courses and trainees? |
![]() |
Sergey Kornilov admin 5/1/2019 |
You will need to implement AfterAdd event of course table to associate trainees with this course. Most likely you will need to loop through trainees table and add a new record for each trainee. |
T
|
Tempus_Erus author 5/2/2019 |
You will need to implement AfterAdd event of course table to associate trainees with this course. Most likely you will need to loop through trainees table and add a new record for each trainee.
|