Tablonda tag diye bir alan oluşturacaksın.
<?php
$sonuc = mysql_query("Select id From tablo");
while($satir = mysql_fetch_assoc($sonuc)){
//Curl kodları
//Her satıra göre CURL ile alınan tag değişkeni
$curl_tag = 'tag1, tag2, tag3, tag4, tag5';
mysql_query("UPDATE tablo SET tag='$curl_tag' where id = ".$satir['id']);
}
?>