How can I replace \"\" (I think it\'s called double quotes) with \'\' (I think its called single quotes) using PHP?
\"\"
\'\'
Try this
//single qoutes $content = str_replace("\'", "'", $content); //double qoutes $content = str_replace('\"', '"', $content);