Advertisement
kopilo

Clean post tags

Jul 19th, 2011
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function cleanPOST() {
  2.     foreach ($_POST as $key => $value) {
  3.         $_POST[$key] = strip_tags($value);
  4.     }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement