You do have both single and double quotes in your code, so whatever kind of quotes you used to enclose it for assigning the string to $content you would have problems. If your file looks like
$content .= '...your code...';
then escape all single quotes inside your code with backslashes.


Reply With Quote

