我最近获得了 Programming PHP, 3rd edtion 的副本,在第 10 页上我看到了一个让我怀疑的“回声”。
<html>
<head>
<title>Personalized Greeting Form</title>
</head>
<body>
<?php if (!empty($_POST['name'])) {
echo "Greetings, {$_POST['name']}, and welcome.";
} ?>
<form action="<? echo php $_SERVER['PHP_SELF']; ?>" method="post">
Enter your name: <input type="text" name="name" />
<input type="submit" />
</form>
</body>
表单标签上的“回声”是必要的吗?我试过没有它,它似乎工作得很好,但我不确定保持那个“回声”是否真的很重要......
如果有人知道这一点,我将不胜感激!
多谢你们!