I am kind of new to the PHP environment and wondered if someone could tell me what the php function (if there is one) that strips the \ slashes when printing a string with double quotes.
Right now I'm passing a string to a variable and instead of this:
\"If we don\'t get juice in here and the ability to move it around, we\'re going to be in trouble,\"
I'd like this:
"If we don't get juice in here and the ability to move it around, we\'re going to be in trouble,"
Any ideas -- thanks
Mark