私は値をデータベースに保存するためにphp webファイルからテキスト入力値を取得したいが、テキスト入力はphpファイルでは機能しない。そして、このエラーが表示さ:未定義のインデックステキスト入力PHP?
Notice: Undefined index: txtUsername in C:/...... line 7 Notice: Undefined index: txtPassword in C:/...... line 8
私のhtml:
<form action="../Controller/LoginController.php">
<input type="text" id="txtUsername" />
<input type="text" id="txtPassword" />
<input type="submit" name="btnLogin" value="login" />
</form>
私のPHPファイル:
$strUsername = $_POST["txtUsername"]; //line 7
$strPassword = $_POST["txtPassword"]; //line 8
:
それはPHPによって参照する内容だからあなたはまた、NAMEパラメータを指定する必要があり、ID
は、このを試してみませんか? – Andrey