i want to single quote inside the string. for example
$strString = "i'm girl";
when i echo out the string, it's like this :
i\'m girl //output
i want the string like "i'm girl".
i try to use stripslashes. something like below
$strString = "i's girl";
$strAfter = stripslaches($strString);
echo "<br>after strip : ". $strAfter;
But the output still is the same.. Can anybody help me??