First of all, i have gone through the related questions.. haven\'t found any answer.. I m using this code to display a message
echo \'Here goes your message wi
In PHP, the escape sequence character is the backslash (\
). You can add this before special characters to ensure that those characters are displayed as literals. For example:
echo 'Here goes your message with an apostrophe S like thi\'s ';
Or you can also write like this:
echo "Here goes your message with an apostrophe S like thi's ";