how to remove \ in php string display
Posted: Tue Aug 25, 2009 1:09 am
My code is
$message="We're looking at developing our website.";
$body= "My message is,\n\n\n\n\t\t\t".$message";
echo $body;
I get result
We\'re looking at developing our website.
Can any body tell me how to remove \ from the printed string?
Thanks in advance
$message="We're looking at developing our website.";
$body= "My message is,\n\n\n\n\t\t\t".$message";
echo $body;
I get result
We\'re looking at developing our website.
Can any body tell me how to remove \ from the printed string?
Thanks in advance