I need help... can some 1 help me what to do about my problem.. im a newbie using XML and i got XML file here for me to parse and display it on the screen or save in mySQL database. so here it goes..
<events>
<event recID="1">
<title>sample</title>
<summary>test</summary>
<description>blahblahablah</description>
<category>
<cat level="1">Film<cat level="2">Short Film</cat></cat>
<cat level="1">Film<cat level="2">Animation</cat></cat>
</category>
<date>
<date.from>20010101</date.from>
<date.to>20011231</date.to>
</date>
<date>
<date.from>20010401</date.from>
<date.to>20011131</date.to>
</date>
<event>
</events>
so i did parse this already and it shows something like this
Title: sample
Summary : test
Description : blahblahablah
Cat : Film Short Film Film Animation
Date From : 20010101 20010401
Date To : 20011231 20011131
so all i wanna do is to segregate the the category and the date form and date to to each other.. i dont really know what to do about this xml..
and another problem i do encounter im having problem parsing when im parsing a film with a size of 30MB what should i do to set the time out from 30 seconds to an hour..
thats all thank you very much...