Here is what I am trying to do. I would like to single out a specific element or elements in an array. For example...
$a = Array("1", "2", "3");
$b = Array("1", "4", "5");
In this example I would like to pull the missing values from $a when compared to $b and place them into an array. So the results for the above two arrays would come out like this...
$c = Array("2", "3");
Basically whatever is missing in $a when compared to $b. Any ideas on how I can accomplish something like this. Any help or direction is appreciated.
Thanks