Jump to content

Test for magic_quotes_gpc?


webref.eu

Recommended Posts

i usually use something like this to stripslashes on everything:

 

<?php
if(function_exists("get_magic_quotes_gpc") && get_magic_quotes_gpc()){
  $func = create_function('&$value','$value = stripslashes($value);');
  array_walk_recursive($_GET,$func);
  array_walk_recursive($_POST,$func);
  array_walk_recursive($_COOKIE,$func);
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.