even though register globals is disabled by default, i'm currious as to
how it and magic quotes interact. consider the following code:
<?
// assuming $_GET['var']='"test"' and register globals enabled
echo $var;
?>
will the output be "test" or \"test\"?
how it and magic quotes interact. consider the following code:
<?
// assuming $_GET['var']='"test"' and register globals enabled
echo $var;
?>
will the output be "test" or \"test\"?
Comment