Hi,

I have 2 arrays:

Array ( 
           [0] => Array (
                                [0] => 28 
                                [1] => Music
                              ) 

            [1] => Array ( 
                                 [0] => 5 
                                 [1] => Books 
                              ) 

           )


and 

Array ( 
           [0] => aaa
           [1] => bbb
           )

I want to join this two array and the result must be loke this: 

Array ( 
           [0] => Array (
                                [0] => 28 
                                [1] => Music
                                [2] => aaa
                              ) 

            [1] => Array ( 
                                 [0] => 5 
                                 [1] => Books
                                 [2] => bbb 
                              ) 

           )


Thanks in advance for your help

Reply via email to