Hi, I'm fairly new to using XML and would like a push in the right direction. Here's my project:
I have multiple IP telephone systems which publish an XML file of their local telephone directory. I want to build a search page that will quiry all of my phone system's XML directories, and display a table of the results. Here is an example of the XML File:
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes'?>
<!--open the DDT -->
<!DOCTYPE nbxdirectory [
<!--see Element Type Declarations for an explanation of the following syntax-->
<!ELEMENT nbxdirectory (directoryentry*)>
<!ELEMENT directoryentry (firstname,lastname,department,extension,location,location2,title,company?)>
<!ELEMENT firstname (#PCDATA)>
<!ELEMENT lastname (#PCDATA)>
<!ELEMENT department (#PCDATA)>
<!ELEMENT extension (#PCDATA)>
<!ELEMENT location (#PCDATA)>
<!ELEMENT location2 (#PCDATA)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT company (#PCDATA)>
]>
<nbxdirectory>
<directoryentry>
<firstname><![CDATA[Conference]]></firstname>
<lastname><![CDATA[Room]]></lastname>
<department><![CDATA[Office]]></department>
<extension><![CDATA[2137]]></extension>
<location><![CDATA[Conference RM]]></location>
<location2><![CDATA[]]></location2>
<title><![CDATA[Conference Room]]></title>
<company><![CDATA[Sweetbriar Elementary]]></company>
</directoryentry>
</nbxdirectory>
Any help with this would be greatly appriciated,