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
Post a Comment