443120
Vegetables
443026
445720
Carrot
443120
443026
Food
####
$VAR1 = {
'Vegetables' => {
'id' => '443120',
'parent_id' => '443026'
},
'Food' => {
'parent_id' => '',
'id' => '443026'
},
'Carrot' => {
'parent_id' => '443120',
'id' => '445720'
}
};
####
foreach my $part ($dom->findnodes('/products/product')) {
foreach my $categories($part->findnodes('./categories/category')) {
$cat_name = $categories->findvalue("name");
$cat_id = $categories->findvalue("category_id");
$cat_parent_id = $categories->findvalue("parent_id");
$catdata{$cat_name} = {"id" => $cat_id, "parent_id" => $cat_parent_id};
}
}