ID:               19526
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Bogus
 Bug Type:         PHP options/info functions
 Operating System: Win2K
 PHP Version:      4.2.2
 New Comment:

Changing the value of magic_quotes_gpc is only effective if it's set
_before_ the script starts (e.g. via php.ini, httpd.conf or .htaccess).
In the CVS version you should get a warning if you try to set it in a
script anyway.


Previous Comments:
------------------------------------------------------------------------

[2002-09-20 11:23:45] [EMAIL PROTECTED]

How do you figure?  If a function call ini_set(magic_quotes_gpc,0)
doesn't do what it is supposed to (which is turn of magic_quotes), why
is that not a bug??  Are you telling me it was design intent to have a
function that does nothing?

------------------------------------------------------------------------

[2002-09-20 11:20:27] [EMAIL PROTECTED]

Sorry, but the bug system is not the appropriate forum for asking
support questions. Your problem does not imply a bug in PHP itself.
For a list of more appropriate places to ask for help using PHP,
please visit http://www.php.net/support.php

Thank you for your interest in PHP.



------------------------------------------------------------------------

[2002-09-20 09:41:06] [EMAIL PROTECTED]

Try this page on a server with magic_quotes_gpc on at the master level.
 It seems to turn off magic quotes at the local level (the page) yet it
still adds the backslash before my single quote.

<?php

// import variables into 'p_' space
import_request_variables('gp', 'p_');

$succ = ini_set("magic_quotes_gpc","0");
if ($succ){print "Magic Quotes was set successfully<br>";}

$succ = ini_set("magic_quotes_runtime","0");
if ($succ){print "Magic Quotes Runtime was set successfully<br>";}

$var = get_magic_quotes_gpc();
print "Magic Quotes = ". $var . "<br>";

if(!isset($p_name)||$p_name==''){$p_name="O'Conner";}

?>

<form name=myForm action=test.php method=post>

<input type="text" name="name" value="<?php echo $p_name; ?>">

<input type=submit value="submit">
<p>
Keep hitting submit

</form>

<?php
print phpinfo();
?>


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=19526&edit=1

Reply via email to