Hello, I have an XML file (diploma.xml) that looks like this:
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE Diploma SYSTEM "diploma.dtd">
<Diploma>
&students;
&Registrations;
&Courses;
</Diploma>
And the DTD looks like this:
<!ENTITY students SYSTEM "students.xml">
<!ENTITY Registrations SYSTEM "registrations.xml">
<!ENTITY Courses SYSTEM "courses.xml">
When I try to open diploma.xml
in IE8 it properly includes all the other XML files, but in Firefox 3.5 I get a syntax error about &students;
not being defined. Why is this?