This may be a problem of my trouble with using single and double quotes in one statement. But I have this piece of code:
echo \'
PHP performs what is called variable interpolation on double-quoted strings, which means that the strings are searched for any variables that they might contain, whose values are substituted in the string. If you want to keep the single quotes, you will need to concatenate your strings and variables together like so:
echo '';
Or, if you want to keep the double quotes, you can escape the double quotes that you want to print:
echo ""