我是 php 的新手,仍處于學(xué)習(xí)階段。我輸入了一個(gè) 1 到 1 的小腳本,結(jié)果發(fā)現(xiàn)我的 HTML 文件中的索引在 php 中無(wú)法識(shí)別。在給定的視頻中使用了“GET”方法,但它實(shí)際上應(yīng)該以完全相同的方式工作。它只是一個(gè)測(cè)試腳本。盡管如此,一個(gè)答案會(huì)有所幫助。這是我的腳本:HTML:<form id="register-form" action="Memeon.php" method="post"> <img class="register_avatar" src="pictures/login_register_avatar.png" oncontextmenu="return false;"> <h2>Welcome to Memeon</h2> <div class="reg-input-div one"> <div class="i"> <i class="fas fa-user"></i> </div> <div> <h5>Username</h5> <input id="reg_un" class="reg-input" name="username" type="text" autocorrect="off" autocapitalize="off" spellcheck="false"> </div> </div> <div class="reg-input-div two"> <div class="i"> <i class="fas fa-at"></i> </div> <div> <h5>Email-Adress</h5> <input id="reg_ea" class="reg-input" name="email" type="email" autocorrect="off" autocapitalize="off" spellcheck="false"> </div> </div> <div class="reg-input-div three"> <div class="i"> <i class="fas fa-lock"></i> </div> <div> <h5>Password</h5> <input id="reg_pw" class="reg-input" name="password" type="password" autocorrect="off" autocapitalize="off" spellcheck="false"> </div> </div> <a id="rl_l1" href="#">2-Factor-Authentication</a> <a id="rl_l2" href="#">Forgot Password?</a> <input type="submit" onclick="setRegisterInfo()" class="register_btn" value="Sign in"></form>PHP:<?php echo "Hallo ". $_POST["username"];?><br>Der sehnlichst erwünschte Newsletter wird gesendet an <?php echo $_POST["email"]; ?>兩者都在同一個(gè)文件夾中。通過(guò)提交按鈕,我進(jìn)入了 PHP 頁(yè)面。錯(cuò)誤總是出現(xiàn)在那里。
1 回答

慕運(yùn)維8079593
TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊
也許它必須與最后提交輸入的“onclick”屬性中的“setRegisterInfo()”函數(shù)中的某些內(nèi)容(是否已實(shí)現(xiàn)?如果是,您也應(yīng)該將其張貼在這里:))。如果該功能中斷,則不會(huì)提交表單。
<input type="submit" onclick="setRegisterInfo()" class="register_btn" value="Sign in">
沒(méi)有那個(gè)功能再試一次。
<input type="submit" class="register_btn" value="Sign in">
- 1 回答
- 0 關(guān)注
- 137 瀏覽
添加回答
舉報(bào)
0/150
提交
取消