php post输入验证

时间:2013-02-14 01:45:30

标签: php validation

如何验证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>

2 个答案:

答案 0 :(得分:0)

这是关键 htmlspecialchars()

答案 1 :(得分:0)

htmlspecialchars()htmlentities()将实现您的需求。

一个例子:

if (isset($_POST['txtExample'])) {
    echo(htmlentities($_POST['txtExample']), ENT_QUOTES));
}
祝你好运。