Hey everyone,
I've got a problem. Say I've got two xml files, a student file and a class file. The class file displays all the students in a class;
eg-
<Class>
<Student> a </Student>
<Student> b </Student>
<Student> c </Student>
</Class>
And the student file stores the details of the student;
eg-
<Students>
<Student id = "a">
<Name>*** </Name>
<Age>*** </Age>
</Student>
</Students>
So can I read the student "a" from the Class file and then read the details of that student from the Student file and display? Any help would be much appreciated.