i am trying to create a 3-level array then retrieve the 3th level array data but somehow i get this.
$project = array();
$project[] = "name";
$project[] = "id";
$project["id"] = "AXA";
$project["id"]["AXA"] = "a new project";
echo $project["id"]["AXA"];
The result i get is a
which came from a new project
How do get the whole string?