I am trying to make a sample website that have a different privileges the admin is for admin page and the client is for client page?
and this is my PHP code db_login
<?php
    $uname = $_POST["uname"];
    $pword = $_POST["pword"];
    require_once("../connector/db_open.php");
    $sql = "SELECT * FROM tbl_create_acc WHERE uname = '".$uname."' AND pword = '".$pword."'";
    $result = $conn->query($sql) or die ($conn->error);
    if($result->num_rows >0)
    {
        if (isset($_SESSION["uname"]) == ($_COOKIE['admin']))
        {
            $row = mysqli_fetch_array($result);
            session_start();
            $_SESSION['id'] = $row['id'];
            $_SESSION['uname'] = $row['uname'];
            $_SESSION['pword'] = $row['pword']; 
            header("Location: ../page/adminpage.php");
        }
        else
        {
            header("Location: ../page/clientpage.php");
        }
    }
    else
    {   
        header("Location: ../page/index1.php");
    }
    require_once("../connector/db_close.php");
?>
