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

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

PHP 請(qǐng)求未驗(yàn)證密碼是否正確,然后繼續(xù)打開 HTML 按鈕

PHP 請(qǐng)求未驗(yàn)證密碼是否正確,然后繼續(xù)打開 HTML 按鈕

PHP
天涯盡頭無女友 2022-08-19 16:56:44
我不知道在這里做什么。PHP post請(qǐng)求(request.php)只是在單擊按鈕(correct.html)后繼續(xù)下一頁,即使我沒有在輸入中鍵入任何內(nèi)容。我希望它驗(yàn)證密碼是否正確,如果是這樣=繼續(xù)更正.html,否則提醒用戶。PHP 代碼:<?php $pass = $_POST['password'];if ($pass == "password"){   include "correct.html";}else{   echo "Password incorrect";}?>代碼:<div class="input-container">    <input class="input-field" type="password" placeholder="Your passphrase" /><br>    <i class="fa fa-user icon"></i></div><br><div id=continue>    <form action="request.php" method="post">     <button class="button" name="password" value="password" style="vertical-align:middle"><span>Confirm</span></button>    </form></div>
查看完整描述

3 回答

?
瀟湘沐

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

您應(yīng)該首先為輸入類型密碼或按鈕添加名稱屬性值,如下所示


<div id=continue>

        <form action="request.php" method="post">

            <input class="input-field" type="password" name="password" placeholder="Your passphrase" />

            <button class="button" name="submit" value="submit" style="vertical-align:middle"><span>Confirm</span></button>

        </form>

</div>

之后你的php代碼應(yīng)該是這樣的


    <?php


    if(isset($_POST['submit']))

    {

    $pass = $_POST['password'];


    if ($pass == "password")

    {

       include "correct.html";

    }


    else

    {

       echo "Password incorrect";

    }

    }

?>


查看完整回答
反對(duì) 回復(fù) 2022-08-19
?
小怪獸愛吃肉

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

這是你必須具備的:form


<div id=continue>

    <form action="request.php" method="post">

        <!-- Note that input and button are under the SAME <form> -->

        <input class="input-field" type="password" name="password" placeholder="Your passphrase" />

        <!-- Note `name` attributes of `button` and `input`  -->

        <button class="button" name="button" value="submit" style="vertical-align:middle"><span>Confirm</span></button>

    </form>

</div>

在服務(wù)器上:


<?php


// for debugging purposes, remove when you want

print_r($_POST);


// as 'password' is now NAME of INPUT, `$pass` stores the value from the INPUT

$pass = $_POST['password'];


if ($pass == "password")

{

   include "correct.html";

}


else

{

   echo "Password incorrect";

}


查看完整回答
反對(duì) 回復(fù) 2022-08-19
?
慕尼黑的夜晚無繁華

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

您應(yīng)該閱讀有關(guān) PHP 中的表單提交的信息。在此特定實(shí)例中,您的表單未作為按鈕需要提交屬性提交提交,即 .<button type="submit"

此外,要調(diào)試 post 數(shù)據(jù),可以使用 。var_dump($_POST); die();


查看完整回答
反對(duì) 回復(fù) 2022-08-19
  • 3 回答
  • 0 關(guān)注
  • 158 瀏覽

添加回答

舉報(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)