首页 > 解决方案 > 我不断收到错误“警告:第 2 行 C:\xampp\htdocs\index.php 中未定义的数组键“用户名””,我不知道该怎么办

问题描述

<?php
$txt = $_POST['username'];
echo $txt;

?>

<!DOCTYPE html>
<html>

<body>

<form method="POST" action="index.php">

<input name="username">
<input type="submit">

</form>

</body>

我想要它做的是在提交表单时回显文本,但它所做的只是给我错误“警告:第 2 行 C:\xampp\htdocs\index.php 中的未定义数组键“用户名””。它也会在页面上显示该消息,因此非常烦人。

标签: phphtml

解决方案


推荐阅读