0

我如何在 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>
4

2 回答 2

0

这是关键
htmlspecialchars()

于 2013-02-14T02:00:09.840 回答
0

htmlspecialchars()htmlentities()将实现您所需要的。

一个例子:

if (isset($_POST['txtExample'])) {
    echo(htmlentities($_POST['txtExample']), ENT_QUOTES));
}

祝你好运。

于 2013-02-14T02:18:26.190 回答