第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

PHP 使用 cookie 登錄會話

PHP 使用 cookie 登錄會話

PHP
慕雪6442864 2023-07-15 15:44:14
請看一下這段代碼。是否可以使用cookies來注冊用戶if (isset($_COOKIE['rand_nm']) && isset($_COOKIE['token'])) {                        $start_date = date("Y-m-d h:i:sa");                        $stmt = $con->prepare("SELECT * From tbl_token Where username = ? AND selector_hash = ?");            $stmt->execute(array($_COOKIE['rand_nm'], $_COOKIE['token']));            $row = $stmt->fetch();            $count = $stmt->rowCount();                        if($row["expiry_date"] >= $start_date) {                $isExpiryDareVerified = true;            }                        if ($_COOKIE['rand_nm'] == $row['username'] && $_COOKIE['token'] == $row['selector_hash'] && $isExpiryDareVerified) {                if ($count > 0) {                $_SESSION['userName'] = $row['username'];                $_SESSION['id'] = $row['id'];                }            }}提交表單時處理表單數(shù)據(jù)并更新數(shù)據(jù)庫表,然后存儲cookies信息。數(shù)據(jù)庫中的令牌[隨機(jī)數(shù)]和用戶名。登錄后...    if ($_SERVER['REQUEST_METHOD'] == 'POST') {                        if (isset($_POST['login'])) {                $user = $_POST['username'];                $pass = $_POST['password'];                $hashPass = sha1($pass);                                if (empty($_POST['username']) || empty($_POST['password'])) {                    header('Location: signup.php?error=fieldsempty');                    exit();                                    }                 
查看完整描述

1 回答

?
翻翻過去那場雪

TA貢獻(xiàn)2065條經(jīng)驗 獲得超14個贊

這是可能的,但我不建議你這樣做。特別是在 cookie 中存儲可能未加密的密碼。


您可以在 cookie 中存儲會話 ID,并將該代碼存儲在數(shù)據(jù)庫中。這樣您就可以“記住”誰通過該特定瀏覽器使用了您的網(wǎng)站,以及用戶是否已注銷?,F(xiàn)在,您無需將未加密的敏感信息存儲在易于訪問的 cookie 中。


if(isset($_COOKIE['sessionid']) {

    //looking for that session id in the database here... your object is $session filled data from the database.

    if($session->stillLogged()) {

        //Authenticate the user..

    }

}


查看完整回答
反對 回復(fù) 2023-07-15
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號