Crew algemeen |
|
je gebruikt dus serialize - daar komt die 'lelijke' tekst van. verder moet je ff een magic_quotes_gpc-omkeer script gebruiken:
<?php
if (get_magic_quotes_gpc () == 1)
{
function strip_deep ($value)
{
return (is_array ($value)) ? array_map ('strip_deep', $value) : stripslashes ($value);
}
$_REQUEST = array_map ('strip_deep', $_REQUEST);
$_GET= array_map ('strip_deep', $_GET);
$_POST = array_map ('strip_deep', $_POST);
// LET OP: _COOKIE kan alleen strings bevatten! hoeft niet recursief
$_COOKIE = array_map ('stripslashes', $_COOKIE);
}
set_magic_quotes_runtime (0);
?>
<?php { function strip_deep ($value) { } $_REQUEST = array_map ('strip_deep', $_REQUEST); // LET OP: _COOKIE kan alleen strings bevatten! hoeft niet recursief $_COOKIE = array_map ('stripslashes', $_COOKIE); } ?>
|