when i write

input data: hel'l"lo

print_r($_POST) display hel\'\"lo

and when i use

if(get_magic_quotes_gpc()){ 
    mysql_real_escape_string($_POST); 

display

hel\\\'\\\"lo

now my quetion is that "is it necessary to use mysql_real_escape_string? bcoz i think php automaticaaly add slashes in post varaiable?"

link|improve this question

Dear Sir, how do i accept when i didn't get true and valuable answer? – diEcho Jan 23 '10 at 12:11
feedback

4 Answers

up vote 0 down vote accepted

No, from version 5.3 onwards, there will be no slashes added by default.

link|improve this answer
so i have to use mysql_real_escape_string($_POST); – diEcho Jan 23 '10 at 12:12
yes you can use that :) – Sarfraz Jan 23 '10 at 12:38
feedback

magic_quotes_gpc is deprecated option at php 5.3

link|improve this answer
so what should i do?? shoud i use mysql_real_escape_string($_POST); or not? – diEcho Jan 23 '10 at 12:09
yes, u must use it – nex2hex Jan 23 '10 at 12:36
feedback

is it necessary to use mysql_real_escape_string?

Yes. But not as a blanket encoding over $_POST or $_GET. That's applying an output-stage escaping mechanism to the input stage, which is the wrong thing and will mangle your strings in unexpected and unwanted ways.

You should keep your strings in raw form up until the moment you insert the string into another context. At that point only, you use the appropriate escaping function. With MySQL:

$query= "SELECT * FROM items WHERE title='"+mysql_real_escape_string($_POST['title'])+"'";

or with HTML:

<p>Title: <?php echo(htmlspecialchars($_POST['title'])) ?></p>
link|improve this answer
feedback

I've recently used an hosting with PHP 5.3.6 with the option "magic_quotes_gpc" enabled. Unfortunately it's a shared hosting so I could not change the config (Also "php_flag magic_quotes_gpc Off" to .htaccess failed).

A code-level solution that worked for me was placing this at the beginning

if (get_magic_quotes_gpc() === 1)
{
    $_GET = json_decode(stripslashes(json_encode($_GET, JSON_HEX_APOS)), true);
    $_POST = json_decode(stripslashes(json_encode($_POST, JSON_HEX_APOS)), true);
    $_COOKIE = json_decode(stripslashes(json_encode($_COOKIE, JSON_HEX_APOS)), true);
    $_REQUEST = json_decode(stripslashes(json_encode($_REQUEST, JSON_HEX_APOS)), true);
}

See here too

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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