php - get iframe title and echo in html -


this question has answer here:


load iframe src 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 not support iframes.</p> </iframe> </body> </html> 


want iframe title , echo in demo.php title tag…
possible?

use javascript instead. this:

var iframetitle = document.getelementbyid("myiframe").documentelement.title


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -