> Another server is linking to my website and they are doing it > from within a frame. Is there anyway to pop out of their frame? Thanks
content rewriting.... uhuhu, apache. :-) Some javascript can check the URL/domain of the pages. <script type="text/javascript"> <!-- if(top!=self) top.location=self.location; //--> </script> this will stop showing a page in a frame, put it into the <head>-thingy. You can toy around with top.location.href to check the url. So it would be possible to use frames for your own sites and prohibit 'stolen frames'. there should be a ton of other ways to check with php etc. -- Holger Lembke +49-531-334676 ------------------------------------------------------- To unsubscribe please go to http://www.sambar.ch/list/
