清理数据库的POST/Get

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清理数据库的POST/Get相关的知识,希望对你有一定的参考价值。

  1. <?
  2.  
  3. // Must be called AFTER the database connection is opened!
  4. $_POST=sanitize($_POST);
  5. $_GET=sanitize($_GET);
  6. $_COOKIE=sanitize($_COOKIE);
  7. $_REQUEST=sanitize($_REQUEST);
  8.  
  9.  
  10. function sanitize($input){
  11. if(is_array($input)){
  12. foreach($input as $k=>$i){
  13. $output[$k]=sanitize($i);
  14. }
  15. }
  16. else{
  17. $input=stripslashes($input);
  18. }
  19. $output=mysql_real_escape_string($input);
  20. }
  21.  
  22. return $output;
  23. }
  24. ?>

以上是关于清理数据库的POST/Get的主要内容,如果未能解决你的问题,请参考以下文章

WEB中的GET和POST

jQuery – AJAX get() 和 post() 方法

HTTP 请求:GET vs. POST

4.27 jQuery AJAX get() 和 post() 方法

jQuery的get()post()getJson()方法

get请求和post请求区别