我如何在 test.php 上验证以回显所有输入的文本,以便 fname 值回显为文本,并且只有文本(无论是 html、js 还是 php)
<html>
<body>
<form action="test.php" method="POST">
Enter Your name : <input type="text" name="fname">
<input type="submit">
</form>
</body>
</html>
我如何在 test.php 上验证以回显所有输入的文本,以便 fname 值回显为文本,并且只有文本(无论是 html、js 还是 php)
<html>
<body>
<form action="test.php" method="POST">
Enter Your name : <input type="text" name="fname">
<input type="submit">
</form>
</body>
</html>
这是关键
htmlspecialchars()
htmlspecialchars()
或htmlentities()
将实现您所需要的。
一个例子:
if (isset($_POST['txtExample'])) {
echo(htmlentities($_POST['txtExample']), ENT_QUOTES));
}
祝你好运。