Guest
Public paste!

Master

By: a guest | Jul 9th, 2009 | Syntax: PHP | Size: 0.24 KB | Hits: 107 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. function strips(&$el) {
  2.         if (is_array($el))
  3.                 foreach($el as &$v)
  4.                         strips($v);
  5.         else $el = stripslashes($el);
  6. }
  7.  
  8.   strips($_GET);
  9.   strips($_POST);
  10.   strips($_COOKIE);
  11.   strips($_REQUEST);
  12. }