शायद आपने magic_quotes_gpc()
चालू है, आपको कुछ ऐसा करने की आवश्यकता है:
if (get_magic_quotes_gpc() == true)
{
$comment = stripslashes($comment);
$userrid = stripslashes($userrid);
}
यदि आप PHP 5.3+ का उपयोग कर रहे हैं, तो आप अपनी फ़ाइल के शीर्ष पर कोड की निम्नलिखित पंक्तियों को रखकर सभी जादुई उद्धृत चरों से छुटकारा पा सकते हैं:
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);
}
यदि आप PHP का निचला संस्करण चला रहे हैं, तो आपको एक नज़र डालनी चाहिए इस पृष्ठ पर ।