XML File Issue



I have following XML file.

2010-04-01
12345

Tony

CA, US


6187
Book


122
DVD

My XML file is not validating correctly? What could be the problem?



Sorry posting my xml again:

<purchase-order>
	<date>2010-04-01</date>
	<number>12345</number>
<purchased-by>
		<name>Tony</name>
<address>CA, US</address>
</purchased-by>
	<order-items></order-items>
		<item>
			<id>6187</id>
			<type>Book</type>
			<label>Some book</label>
		</item>		<item>
                 <id>122</id>
			<type>DVD</type>
			<label>Some video</label>
		</item>
 
</Purchase-order>

Never mind. XML tags are case-sensitive: <purchase-order> is not same as </purchase-order>

Validate your XML from here: http://www.w3schools.com/xml/xml_validator.asp

Tony