Mini Shell
<?php
include '../db/database.php';
$typeID = $_POST['typeID'];
$typePersonnel = $_POST['typePersonnel'];
$sql = "INSERT INTO `type_personnel` (`typeID`, `typePersonnel`) VALUES ('$typeID', '$typePersonnel')";
$result = mysqli_query($link, $sql);
if ($result) {
header('Content-Type: application/json');
echo json_encode(array('status' => 'success','message' => 'บันทึกข้อมูลเรียบร้อยแล้ว'));
} else {
header('Content-Type: application/json');
$errors = "เกิดข้อผิดพลาดในการบันทึกรหัสอาจจะซ้ำกัน กรุณาลองใหม่ ";
echo json_encode(array('status' => 'danger','message' => $errors));
}
Zerion Mini Shell 1.0