How to nicely display the data structure. Below paste my multidimensional array, please help
        Array
        (
            [1] => Array
                (
                    [0] => Array
                        (
                            [LP] => 1
                            [Produkt] => product1
                        )
                )
            [2] => Array
                (
                    [0] => Array
                        (
                            [LP] => 2
                            [number] => 157/03/2014
                            [Produkt] => product1
                        )
                    [1] => Array
                        (
                            [LP] => 2
                            [number] => 157/03/2014
                            [Produkt] => product2
                        )
                )
        )
=== My CODE ==============================================
foreach ($a as $date) {
        $output .= "\t\t\t<ID>". $date[0]['LP']."</ID>\n";
        second foreach for product {
        $output .= "\t\t\t<Produkt>". Produkt ."</Produkt>\n";
        }
    }
 
     
    