prepare("SELECT id, userrole, username, enabled FROM app_users WHERE (userrole = 'admin' OR userrole = 'superadmin') AND BINARY username = ? AND enabled = ?"); $selectid->bind_param("si", $username, $enabled); $selectid->execute(); $queryres = $selectid->get_result()->fetch_assoc(); $userID = $queryres['id']; // Remove the row corresponding to the specified user and extension from the 'external_users' table $removequery = $mysqli->prepare("DELETE FROM external_users WHERE userid = ? AND exten_for_external = ?"); $removequery->bind_param("is", $userID, $extenForExternal); if ($removequery->execute()) { $messagetosend = 'The data has been successfully removed from the database !'; } else { $messagetosend = 'Error while removing the data from the database !'; } $removequery->close(); // Remove the password file for the extension whose data has been removed from the 'external_users' table if (file_exists("../restr/".$username."/externalext/".$extenForExternal)) { $removefile = exec("rm ../restr/".$username."/externalext/".$extenForExternal); } $response = array('result' => $messagetosend); echo json_encode($response); } else { header("Location: ../login.php"); } ?>