Risolto!

Da così:
$insert_offer_from = "INSERT INTO offers_from(offer_id,from_id) VALUES ('$offer_id','$from_id')";
foreach($array_from_id as $from_id) { $execution = mysql_query($insert_offer_from);
};

A così:

foreach($array_from_id as $from_id) {
$insert_offer_from = "INSERT INTO offers_from(offer_id,from_id) VALUES ('$offer_id','$from_id')";
$execution = mysql_query($insert_offer_from);
};

Ho messo la query nel ciclo....

Funzion ma qualcuno sa dirmi perchè?

Grassie...