Forum Moderators: coopster
School table
unitid (int)5 auto increment key
unit (varchar)5
school (varchar) 40
Program table
programid (int) 5 auto-increment key
unitid_fk (int) 5
programname (varchar) 40
startdate (date)
enddate (date)
I am joining the tables by unitid in schoool and unitid_fk in program.
The first page needs to be a form with a unit text input field. Submit needs to bring up the corresponding list from the program table that correspond to the intended unit number submitted on the form.
Can someone give me some ideas here. I may make the unit lookup pull from the table because the relationship is one to many. One unit number used many times.
Thanks