I have an HTML file http://mydomain.com/page1.html:
<!doctype html> <html> <iframe src="http://mydomain.com/page2.php"></iframe> </html>
In page2.php, I would like to get the URL of the "container page", which in this case is the string page1.html .
Is there any way to do this without javascript ?
source share