http://tut.php-q.net/guestbook.html#u5
<?php
function array_stripslashes(&$var){
if(is_string($var)){
$var = stripslashes($var);
}
else{
if(is_array($var)){
foreach($var AS $key => $value){
array_stripslashes($var[$key]);
}
}
}
}
?>
<?php
if(get_magic_quotes_gpc()){
array_stripslashes($_GET);
array_stripslashes($_POST);
array_stripslashes($_COOKIE);
}
?>