hi rodders i managed to get my tables together they are as follows
Course(Course#, Coursename, CourseType)
Module(Module#, Modulename, Moduletype)
CourseModule(Course#, Module#)
Student(Student#, name, DOB, email, password)
StudentModule(Student#, Module#)
Tutor(Tutor#, name, email, room no, tel)
ModuleTutor(Module#, tutor#)
TutorStudent(tutor#, Student#)
year(year, semester)
moduleyear(Module#, year, semester)
My problem is i want to have more than one drop down to access the correct modules for each semester. I can access the appropriate modules by doing a query but i dont know how to do the first query which asks for which course they are studying.
i want the user to pick what course e is studying from a drop down then pick what semester he is currently at then click submit which will echo back the right modules for a particular course and semester.
can you help?