Can someone help me I want to know how to make the title of my index file change to the title of the website inside a frame
you can do this with Javascript <? $title = 'javascript:alert(document.getElementsByTagName("iframe")[0].document.title)'; ?> Code (markup): althought I dont know why you would want to use an iframe, when you can easily put a whole websites contents in a PHP variable and echo the whole site back so it is seemless.
edit your page <title><?php echo $title[1];?></title> or something like that <?php $url = ''.$_GET['url'].''; $page = file_get_contents($url); if(preg_match("/<title>(.+)<\/title>/i",$page,$title)) ?> Code (markup):