i need get value from 2 arrays...
First Array:
Array ( [0] => Array ( [id] => 1 [nombre_area] => biblioteca )
[1] => Array ( [id] => 2 [nombre_area] => enfermeria )
[2] => Array ( [id] => 3 [nombre_area] => talleres y laboratorios ) )
Second Array:
Array ( [0] => Array ( [0] => 1 [1] => biblioteca )
[1] => Array ( [0] => 3 [1] => talleres y laboratorios ) )
i need get the difference:
Array ( [0] => Array ( [id] => 2 [nombre_area] => enfermeria )
How can i do that ?