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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

從特定頁面重定向后更改文本...?

從特定頁面重定向后更改文本...?

月關(guān)寶盒 2023-11-13 14:41:06
正如標(biāo)題所示,我正在嘗試使用相同的 .php 頁面,并讓它在從特定位置重定向時(shí)顯示新的內(nèi)容。在上下文中...我有一個(gè)登錄,成功登錄后重定向到主頁,但如果不成功,則重定向到索引。有沒有辦法讓我的索引頁面在從登錄頁面重定向時(shí)顯示“登錄錯(cuò)誤”消息?這是我的登錄代碼...<?phpsession_start();include('conn.php');$query = "SELECT * FROM User";$result = mysqli_query($conn, $query) or die(mysqli_error($conn));if (isset($_POST["submit"])) {    $logEmail = $conn->real_escape_string($_POST['logEmail']);    $logPass = $conn->real_escape_string($_POST['logPass']);    $checkuser = "SELECT * FROM User WHERE Email='$logEmail' AND UserPassword=AES_ENCRYPT('$logPass', 'MyKey')";    $userresult = mysqli_query($conn, $checkuser) or die(mysqli_error($conn));    $loginsucc = (mysqli_num_rows($userresult) > 0);    if (mysqli_num_rows($userresult) > 0) {        while ($row = mysqli_fetch_assoc($userresult)) {            $userPriKey = $row['UserID'];            $userid = $row['Email'];            $accounttype = $row['IsAdmin'];            $firstname = $row['FirstName'];            $surname = $row['LastName'];            $_SESSION['userPriKey'] = $userPriKey;            $_SESSION['name'] = $firstname;            $_SESSION['surname'] = $surname;            $_SESSION['Email'] = $userid;            $_SESSION['IsAdmin'] = $accounttype;            if($accounttype == '1'){                header("Location: home.php");            }else if ($accounttype == '0'||$accounttype == NULL ) {                header("Location: userhome.php");            }        }    } else {        header("Location: index.php");    }}?>
查看完整描述

1 回答

?
慕慕森

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超17個(gè)贊

在調(diào)用之前header()設(shè)置一個(gè)會(huì)話變量,如下所示


$_SESSION['msg'] = 'success you are logged in';

header('Location: page.php');

exit; 

然后在page.php中,


session_start();

if (isset($_SESSION['msg'])) {

    echo $_SESSION['msg'];

    unset($_SESSION['msg']);

}

另外僅供參考,您應(yīng)該使用準(zhǔn)備好的語句。您的代碼并不完全安全


查看完整回答
反對(duì) 回復(fù) 2023-11-13
  • 1 回答
  • 0 關(guān)注
  • 148 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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