I have the following two arrays...
1) how could i get only the different key->value one? 2) how can i insert to mysql the second array?
// first array
$aa =  Array
            (
                [t_a] => Array
                    (
                        [0] => Array
                            (
                                [f_c] => LAL
                                [p_r] => RN
                                [id] => 
                                [gender] => m
                            )
                    )
                [t_b] => Array
                    (
                    )
                [t_l] => Array
                    (
                        [0] => Array
                            (
                                [p_lev] => 2
                                [p_date] => 
                                [p_r] => 
                            )
                    )
                [t_r] => Array
                    (
                        [0] => Array
                            (
                                [I_r] => 19
                            )
                    )
// second array
 $bb = Array
                (
                    [t_a] => Array
                        (
                            [0] => Array
                                (
                                    [f_c] => NAN
                                    [p_r] => RN
                                    [id] => 1214125
                                    [gender] => m
                                )
                        )
                    [t_b] => Array
                        (
                        )
                    [t_l] => Array
                        (
                            [0] => Array
                                (
                                    [p_lev] => 2
                                    [p_date] => 21
                                    [p_r] => 25
                                )
                        )
                    [t_r] => Array
                        (
                            [0] => Array
                                (
                                    [I_r] => 19
                                )
                        )
I have used the array_diff function but i get NULL.
please some one help?