joar danke nochmal, aber hatte es ja nun schon gefunden ... bzw. Valle hatte es
Code:
<?PHP
echo $_GET['Test'], '
';
function RemoveMagicQuotes(&$Array) {
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc())
foreach ($Array as $Key => $Value)
if (is_string($Value)) {
$Array[$Key] = stripslashes($Value);
} elseif (is_array($Value))
RemoveMagicQuotes($Array[$Key]);
}
RemoveMagicQuotes($_GET);
RemoveMagicQuotes($_POST);
RemoveMagicQuotes($_COOKIE);
RemoveMagicQuotes($_SERVER);
echo $_GET['Test'];
?>
.../a.php?Test=a'b
Zitat:
a\'b
a'b
PS: in dem phpMyAdmin-Code werden zwar auch noch die Keys mit dequotet, aber ich nutze eh keine Namen, wo dieses nötig wäre