is there a function that does this? I am sure there is, but my mind is drawing a blank (and i can't seem to find it at php.net). basically i am doing this
for ($z=0; $z < count($arc_body_array); $z++)
{
for ($y=0; $y < count($body_array); $y++)
{
if ($arc_body_array[$z] == $body_array[$y])
{
remove from array $href_array[$y];
remove from array $date_array[$y];
remove from array $news_array[$y];
remove from array $body_array[$y];
}
}
}
something like that. just looking for the function, thanks.