Consider the following entities and their relationshipsstudent (sno integer, s_name char(30), s_class char(10), s_addr char(50)),
teacher (tno integer, t_name char (20), qualification char (15),experience integer).
The relationship between student-teacher: m-m with descriptive attribute subject.
Using above database write a script in PHP to accept a teacher name from user and display the names of students along with subjects to whom teacher is teacher. [25 M]
0 Comments