PHP简单处理表单输入的特殊字符的方法
更新时间:2016年02月03日 11:43:46 作者:不是JS
这篇文章主要介绍了PHP简单处理表单输入的特殊字符的方法,涉及PHP中trim(),strip_tags(),htmlspecialchars()及addslashes()等函数的使用技巧,需要的朋友可以参考下
本文实例讲述了PHP简单处理表单输入的特殊字符的方法。分享给大家供大家参考,具体如下:
<html>
<body>
<?php
if ($_POST['submitted'] == "yes"){
$yourname = $_POST['yourname'];
$yourname = trim ($yourname);
$yourname = strip_tags ($yourname);
$yourname = htmlspecialchars ($yourname);
$yourname = addslashes ($yourname);
echo $yourname . "<br />";
?><a href="index.php">Try Again</a><?php
}
if ($_POST['submitted'] != "yes"){
?>
<form action="index.php" method="post">
<p>Example:</p>
<input type="hidden" name="submitted" value="yes" />
Your Name: <input type="text" name="yourname" maxlength="150" /><br />
<input type="submit" value="Submit" style="margin-top: 10px;" />
</form>
<?php
}
?>
</div>
</body>
</html>
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php字符串(string)用法总结》、《PHP运算与运算符用法总结》、《PHP基本语法入门教程》及《php防止SQL注入方法总结》
希望本文所述对大家PHP程序设计有所帮助。
相关文章
WordPress开发中用于获取近期文章的PHP函数使用解析
这篇文章主要介绍了WordPress开发中用于获取近期文章的PHP函数使用解析,即对wp_get_recent_posts函数的使用方法介绍,需要的朋友可以参考下2016-01-01
PHP使用file_get_contents发送http请求功能简单示例
这篇文章主要介绍了PHP使用file_get_contents发送http请求功能,结合实例形式分析了file_get_contents结合stream_context_create实现的发送post请求数据相关原理与操作技巧,需要的朋友可以参考下2018-04-04


最新评论