I\'m dealing with this kind of XML sequence file can you any one suggest me to parse this:
That's not a valid XML file. It looks like two files in one, but even then it is invalid. Assuming those are two separate files, you could try "tidying" them first. Assuming $xml is a string containing the xml contents:
$xml = tidy_repair_string($xml, array(
'output-xml' => true,
'input-xml' => true
));
Then you could use SimpleXml on it:
$xml = new SimpleXmlElement($xml);