heya,

basic question:

Array given with say 10 entries:
array[0] = id1;
array[1] = id2;
etc...


I want to store multiple attributes for every array entry, like this:
array[0].date = 123;
array[0].age = 234;
array[0].year = 345;
etc...

how can this be done?? :/

or better: how must the array be created in order for this to work?

any direction or example would be more than welcome!!

btw. the attributes are all the same for every arrayindex.

in the next step, I will have to store arrays in there as I need to store multiple attributes for every arrayindex, say array[0].date[0], array[0].date[1], etc etc

thanks in advance!!