我的基本PHP回聲功能不正確?它只是一條線,我並不認爲這是錯誤的。如果有人可以請給我一些好的指針。這裏是我的代碼:我的PHP代碼不工作?
HTML:
<form id ="myForm" action ="register.php" method="post">
<h3>Create Username</h3>
<input type="text" name="username">
<h3>Create Password</h3>
<input type ="password" name="password" id ="passwordBoxOne">
<h3>Confirm Password</h3>
<input type ="password" id ="passwordBoxTwo">
<h3>Email</h3>
<input type ="email" name="email"><br>
<input type ="submit" value="Register" id="submitButton">
</form>
register.php:
<?php echo $_POST["username"];?>
當我運行這段代碼它是一個網絡服務器上則沒有出現在屏幕上。我假設用戶名輸入中的值會出現。
您是否獲得在你的PHP錯誤日誌中的任何錯誤? – blazerunner44
'轉儲'''_ _POST'。 'var_dump($ _ POST);'併發布你的輸出。 – Mubin
嘗試做一個var_dump($ _ POST); – ritter