I have tried everything that I can think of backwards and forwards, I have counted and recounted my lt's and gt's again and again, but this external dtd file keeps being invalidated with the message: "XML Parsing error @line 30 (the last line containing "]>"): Start tag expected, '<' not found." Can anyone help me out? Thanx much!
<?xml version="1.0"?>
<!DOCTYPE items
[
<!ELEMENT items (item+)>
<!ELEMENT item (description, country, sellingPrice, cost, quantityOnHand,
backorderedAmount, dateLastReceived, quantitySoldYearToDate,
warehouseSection, warehouseShelve, remarks, supplier, supplier+)>
<!ATTLIST item itemNumber ID #REQUIRED>
<!ELEMENT description (#PCDATA)>
<!ELEMENT country (#PCDATA)>
<!ELEMENT sellingPrice (#PCDATA)>
<!ATTLIST sellingPrice saleItem (Y|N) #REQUIRED>
<!ELEMENT cost (#PCDATA)>
<!ELEMENT quantityOnHand (#PCDATA)>
<!ELEMENT backorderedAmount (#PCDATA)>
<!ATTLIST backorderedAmount dateOrdered NMTOKEN #IMPLIED>
<!ELEMENT dateLastReceived (month, day, year)>
<!ELEMENT month (#PCDATA)>
<!ELEMENT day (#PCDATA)>
<!ELEMENT year (#PCDATA)>
<!ELEMENT quantitySoldYearToDate (#PCDATA)>
<!ELEMENT warehouseSection (#PCDATA)>
<!ELEMENT warehouseShelve (#PCDATA)>
<!ELEMENT remarks (#PCDATA)>
<!ELEMENT supplier (number, shipmentLeadTime, supCost)>
<!ELEMENT number (#PCDATA)>
<!ELEMENT shipmentLeadTime (#PCDATA)>
<!ATTLIST shipmentLeadTime unit (days|weeks) #REQUIRED>
<!ELEMENT supCost (#PCDATA)>
]>