Tam detayları vermemişsin dostum, ama aşağıdaki gibi bir mantığı kullabilirsin


if( isset($_POST["_task"]) && $_POST["_task"] == "Denemedir" ){

$pead = $_POST["pead"];
$pbol = $_POST["pbol"];
$yeterlilik = $_POST["yeterlilik"];
$yetdeg = $_POST["yetdeg"];
$yethedef = $_POST["yethedef"];
$uygunluk = $_POST["uygunluk"];

for($i = 0; $i < count($yeterlilik); $i++){
$values = array
(
$id,
$pead,
$pbol,
$yeterlilik[$i],
$yetdeg[$i],
$yethedef[$i],
$uygunluk[$i],
1
);

$addQuery[] = 'VALUES('.implode(',', $values).')';

}

$db->update('INSERT INTO '.TBL_PERSONEL. ' ' . implode(',' , $addQuery));


header("locationersonelekle.php?info=21");
exit();
}
?>