vote up 0 vote down star

When I submit data in my form it changes "abcd" to \"abcd\" on the other end.How can I overcome this problem... (I am using post method to send data)..... Please help...Thanks

flag

2 Answers

vote up 8 vote down check

This is generally due to magic_quotes.

Something similar to

<?php
if (get_magic_quotes_gpc()) {
    function stripslashes_deep($value)
    {
        $value = is_array($value) ?
                    array_map('stripslashes_deep', $value) :
                    stripslashes($value);

        return $value;
    }

    $_POST = array_map('stripslashes_deep', $_POST);
    $_GET = array_map('stripslashes_deep', $_GET);
    $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
    $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
}
?>

Should switch them off. I'd reccomend switching them off in your configuration though..

http://us2.php.net/manual/en/security.magicquotes.disabling.php

link|flag
Thanks a lot..... Problem solved – halocursed Jul 12 at 12:30
vote up 0 vote down

That are probably Magic Quotes. You can disable them by disabling magic_quotes_gpc (either in a .htaccess file or in the server configuration).

link|flag
1  
magic quotes cannot be disabled in a .htaccess – Mez Jul 12 at 12:27
1  
It can be disabled in a .htaccess file if PHP runs as Apache module. The Changeable value of magic_quotes_gpc is PHP_INI_PERDIR (see docs.php.net/manual/en/…). – Gumbo Jul 12 at 12:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.