<?php
if (isset($_POST['submit']))
{
if (isset($_POST['a']) and $_POST["a"]!=='')
{
$misamarti = $_POST["a"];
echo $misamarti;
}
}
?>
<form method="post" action="">
<input type="text" name"a" value="<?php echo $misamarti; ?>" />
<input type="submit" name="submit" />
</form>
在此之后我得到
注意:未定义的变量: 第 21行C:\xampp\htdocs\template\admin_panel\1.php中的misamarti
这是输入字段的内部。