i load my iframe src from address bar like:
http://site.com/demo.php?go=http://google.com
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<iframe src="<?php echo $_GET["go"];?>">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
now i want to get iframe title and echo it in demo.php title tag…
is it possible?