Hello, I am having a little trouble parsing some xml. I reviewed the tutorials, and wrote some code. I was able to get the sentences to parse into an array if i kept all the <information> stuff in the <language> part, which is not where it should be. All the of the <information> stuff can be ignored, it is just there for help. However I need each sentence to be parsed into an array. Here is my xml code:
<?xml version="1.0" encoding="iso-8859-1"?>
<helpdesk_languagepack>
<information>
<language_name>Spanish</language_name>
<version>1.0</version>
<description>Default spanish language pack</description>
<author>Jason</author>
<custom>Who said spanish was hard.....lol</custom>
</information>
<language>
<sentence>Por favor, me da una vez.</sentence>
<sentence>Quien es esto?</sentence>
<sentence>Sí, este es bien.</sentence>
</language>
</helpdesk_language_pack>
Thank you for your help!
Jason