0
我有這個PHP頁面,用戶可以選擇和取消選擇項目。接口看起來是這樣的:如何處理未分配的記錄
現在我使用這些代碼,當用戶擊中保存更改按鈕:
foreach($value as $al_id){ //al_id is actually location id
//check if a record exists
//if location were assigned and leave it as is
$assigned_count = $this->AssignedLoc->checkIfAssigned($tab_user_id, $al_id);
if($assigned_count == 0){
//else if not, insert this new record
$this->insertAssigned($tab_user_id, $company_id, $al_id);
}
}
現在的問題是,如何刪除未指定地點?例如在上面的屏幕截圖中,如果我要從指定位置移除(或取消分配)「Mercury Morong」和「GP Hagonoy」,則只有兩個必須保留。使用PHP的可能解決方案是什麼?
感謝您的幫助!