Heim >Backend-Entwicklung >PHP-Tutorial >PHP简单处理表单输入的特殊字符的方法_php技巧

PHP简单处理表单输入的特殊字符的方法_php技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 19:59:011165Durchsuche

本文实例讲述了PHP简单处理表单输入的特殊字符的方法。分享给大家供大家参考,具体如下:

<html>
<body>
  <&#63;php
   if ($_POST['submitted'] == "yes"){
    $yourname = $_POST['yourname'];
    $yourname = trim ($yourname);
    $yourname = strip_tags ($yourname);
    $yourname = htmlspecialchars ($yourname);
    $yourname = addslashes ($yourname);
    echo $yourname . "<br />";
    &#63;><a href="index.php">Try Again</a><&#63;php
   }
   if ($_POST['submitted'] != "yes"){
    &#63;>
    <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>
    <&#63;php
   }
  &#63;>
 </div>
</body>
</html>

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php字符串(string)用法总结》、《PHP运算与运算符用法总结》、《PHP基本语法入门教程》及《php防止SQL注入方法总结

希望本文所述对大家PHP程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn