Can you take the double quotes and change them into single quotes? For example, when I want to do <?php echo "adsense code here" ?> For that to work, I need single quotes on all the adsense code. Is that ok? EDIT: Ok I just tried <?php echo 'adsense code here' ?> and left the code with double quotes and I guess that works. I didn't know you could use single quotes with PHP.
It's javascript, so I think the double quotes are important If you want to display it with php then escape the double quotes first eg $var = "here is an escaped \" double quote"; echo $var; //displays //here is an escaped " double quote do a find and replace in the adsense code, change " to \" have fun!