Multidimensional array's

I know I can set these up as array[0] =["","",""] and so on but what I am after is using text as the second indicator

For example:

array[0][“name”]=“tejddj”;
array[0][“title”]=“fdfgdgd”;

accessing them then as:

echo(array[0][“name”]);

Rather than:

**array[0][0]=“tejddj”;
array[0][1]=“fdfgdgd”;

echo(array[0][0]);**

Many Thanks