Skip to content

Instantly share code, notes, and snippets.

@sergioccrr
Created April 14, 2013 03:53
Show Gist options
  • Save sergioccrr/5381390 to your computer and use it in GitHub Desktop.
Save sergioccrr/5381390 to your computer and use it in GitHub Desktop.
Anti Magic Quotes
<?php
if (get_magic_quotes_gpc()) {
$_GET = array_map('stripslashes', $_GET);
$_POST = array_map('stripslashes', $_POST);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment