Possible Duplicate:
How to remove values from an array in PHP?
I have this
$arr1 = array('orange','banana');
$arr2 = array('broccli','tomato','mixedvegies','orange','veg2');
how would I take complete $arr1 from $arr2 so that arr2 has
$arr2 = array('broccli','tomato','mixedvegies','veg2');
