この問題の解決を手伝っていただけませんか。テキストボックスにコンテンツを投稿し、PHPの「echo」を使用して表示しようとしましたが、「未定義のインデックス」が表示され続け、テキストボックスのコンテンツが投稿されません。コードは次のとおりです。
<?php
if (isset($_POST['updateaccount'])) {
$accountType = $_POST['typeBox'];
echo $accountType;
}
?>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'];?>">
<table>
<tr>
<td><strong>Account Type<strong></td>
<td><input type="text" name="typeBox" value="This is a test." disabled="true"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="updateaccount" value="Update Account"></td>
</tr>
</table>
</form>
フォームを送信しようとすると、次のように表示されます。
注意:未定義のインデックス:5行目のC:\ xampp \ htdocs \ cel1rcfc\test.phpのtypeBox