/ Published in: PHP
URL: http://www.barattalo.it/2010/04/27/always-remove-slashes-from-get-and-post/
Expand |
Embed | Plain Text
function slashes($e) { if (is_array($e)) return array_map("slashes", $e); else return stripslashes($e); } }
You need to login to post a comment.
