+------------------------------------------+
| NEVERMIND, READ ABOVE |
+------------------------------------------+
Well im not going to do the code for you, but it will have to work like this:
User in_array() on each value in array1 on array 2, and build an array off that, ie:
foreach($array1 as $value)
{
if(!in_array($value, $array2))
{
$array3 = $value;
}
}
But, i think this wioll only work if array2 is bigger then array1