seems like i'm blind at the moment. I want to build an empty array(). but instead of getting "0" as array-key i want to have a specific string as the key... Just to make it clear:
$array = array();
gives me:
[0] => array {
}
but i want it like that:
["string"] => array {
}
...this really drives me crazy right now.
Thanks,Alex
$array['key'] = 'value'is the way to assign keys and values.