Пример #1
0
    if ($rows = mysqli_fetch_assoc($results)) {
        $type_id = $rows['id'];
        // $a['display'] = $type_id;
    }
    $update_query = "UPDATE reg SET user_type_id = '{$type_id}' WHERE id='{$id}'";
    $resultss = mysqli_query($connection, $update_query);
    if ($resultss) {
        //header("Location: role.php");
    }
    echo json_encode($a);
}
//uodating type of user for the registered user
if ($_POST['add'] == "add" && ($type = $_POST['type'])) {
    $_SESSION['action'] = "add";
    require 'acl.php';
    $result = $objName->addRole($type);
    header('Location: adminmanage.php');
}
if ($_POST['delete'] == "delete" && ($type = $_POST['role'])) {
    $_SESSION['action'] = "delete";
    require 'acl.php';
    $result = $objName->deleteRole($type);
    header('Location: adminmanage.php');
}
//for roles addition and deletion
if ($_POST['add'] == "add" && ($operation = $_POST['operation'])) {
    $_SESSION['action'] = "add";
    require 'acl.php';
    $result = $objName->addOperation($operation);
    header('Location: adminmanage.php');
}