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

javascript - CasperJS/PhantomJS failing SSL handshakes on some sites even with --ssl-protocol=any -

codeigniter - Fatal error: Call to undefined function lang() in CI Merchant using CardSave -

python - Received unregistered task using Celery with Django -