function addslashes_for_array(&$arr)
{
foreach($arr as $k=>$v)
{
if (is_array($v))
{
addslashes_for_array($v);
$arr[$k] = $v;
}
else
{
$arr[$k] = addslashes($v);
}
}
}
function fix_magic_quotes_gpc()
{
if (!get_magic_quotes_gpc())
{
addslashes_for_array($_POST);
addslashes_for_array($_GET);
addslashes_for_array($_COOKIE);
}
}
function addslashes_for_array(&$arr)
зачем здесь ссылка, не проще просто вот такт
function addslashes_for_array($arr),
вот источник скрипта...
http://www.controlstyle.ru/articles/text/magic-quotes-gpc/
борьба с magic-quotes-gpc