Hi i have one problem - i made for my friends Web and we have there some kind of timetable. It is in the flash menu so I need to show there our shows - i want to display only the nearest to the today date. http://www.teamc.aplus.pl/ququ/noc/ I want to display it below " Najblizszy wystep". As you see i have three words there ( so there will be three dynamicfields ) - miejsce ( place where they will be playing ), data ( date ) and godzina ( hour of the show ). I have problem - how to built xml file? If I put there about 10 shows so need I give every show an unique id ? like
Code:
<miejsce1>paris</miejsce1>
<data1>19.02.2007</data1>
<godzina1>19.00</godzina1>

<miejsce2>warsaw</miejsce2>
<data2>19.03.2007</data2>
<godzina2>18.00</godzina2>

<miejsce3>sopot</miejsce3>
<data3>10.12.2007</data3>
<godzina3>17.00</godzina3>

or can i simple do:

<miejsce>paris</miejsce>
<data>19.02.2007</data>
<godzina>19.00</godzina>

<miejsce>warsaw</miejsce>
<data>19.03.2007</data>
<godzina>18.00</godzina>

<miejsce>sopot</miejsce>
<data>10.12.2007</data>
<godzina>17.00</godzina>
and flash will display only first? Is there any already made script? or any tutorial which will show me how to do it? regards