I just got this geo targeting script (site.com/ad.php) to switch my ads from ypn/adsenes and I'm trying to replace the current static ads with this script, using something like a frame. How would I do this with a (height 60 width 234) ad? I tried using "frame src" but it puts the ad inside a frame, and its very obvious its framed. Also I cannot use php include because I'm using a CMS. How can I include the AD without changing the current appearance?
If you're using a CMS, it's probably running PHP anyway. Try taking a peek under the hood and see what's powering it.
exe is very close to the solution. But since you can't size or float a frame element (that's all done in the framset tag), you'll need to use an iframe: <iframe src="ad.php" frameborder="0" height="60" width="234"></iframe> HTML: You can use positioning tags inside the iframe tag (align, etc.) or you can position with external block level elements.