1 2 3 4 5 6 7 8 9 10 |
<iframe src="http://www.google.com/" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe> <?php $content = file_get_contents('http://www.google.com/'); $content = str_replace('</title>','</title><base href="http://www.google.com/" />', $content); $content = str_replace('</head>','<style>body { background-color:red;} #hplogo {float:left;} </style></head>', $content); echo $content; ?> |
This changes the css in external websites you import as an iframe