Eric_W

Untitled

Jun 4th, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. function clean($mixed)
  4. {
  5.     if(is_array($mixed))
  6.     {
  7.         return array_map("clean",$mixed)
  8.     }
  9.     else
  10.     {
  11.         return mysql_real_escape_string(htmlentities($mixed));
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment