Ok, thanks, two more questions:
-- What is an Hash Table ?
-- Is there a diference of usage between associatives and indexed arrays ?
I mean I can do
$array[0] = "12345";
if I access $array[0][1] I will have the number '2'.
I guess this can be done in the same using an associative array, perhaps something like
$array["name"] = "myname";
$array["name"][2] Will be 'n'. Is this correct ?
[ I don't have the PHP parser avaiable right now, so I can't test this. Thanks for your time.. ]