Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
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]);
}
}
}
}
if(get_magic_quotes_gpc())
{
array_stripslashes($_GET);
array_stripslashes($_POST);
array_stripslashes($_COOKIE);
}