For a site that I am developing, I have an iframe of a third party site. Is there a way to set all links back to my site as target=parent? Perhaps using $HTTP_Referrer?
Yes, use javascript, not PHP.
Good luck...v
<body onLoad="if(parent.frames.length!=0)top.location='index.htm';">
If anyone else is interested, this solution seems to be working....