I get two arrays
But I need them to be merged, values that are equal are removed: in
array_unique( array_merge($array1, $array2) )
You can remove the duplicates, but I want to remove both duplicates.
Is there a simple method, or is it even looping?