5) { sleep(1); header("Location:" . $WebSite . "login/login_form.php"); exit; } include $_SERVER['DOCUMENT_ROOT'] . '/load_header.php'; $title_message = '기초 모델 관리'; ?> <?= $title_message ?> $model_name, "pair" => $pair, "slatitem" => $slatitem ); } elseif ($action === 'update' && $model_name !== '' && $index >= 0 && $index < count($models)) { // 수정: 해당 인덱스의 값을 변경 (모델명과 prefix 모두 업데이트) $models[$index]["model_name"] = $model_name; $models[$index]["pair"] = $pair; $models[$index]["slatitem"] = $slatitem; } elseif ($action === 'delete' && $index >= 0 && $index < count($models)) { // 삭제: 해당 요소 제거 array_splice($models, $index, 1); } // JSON 파일에 저장 file_put_contents($jsonFile, json_encode($models, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)); } ?>


$model): ?>
순번 종류 모델명 로트번호사용 약자 두문자 수정/삭제
등록된 모델이 없습니다.