I have an iframe on my website that displays different site.
Is it possible to grab & store/save source of the iframed site?
I have an iframe on my website that displays different site.
Is it possible to grab & store/save source of the iframed site?
The same-origin policy in the browser will prevent you from accessing the internal content of a div loaded from another domain.
You can always just $iframeSource = file_get_contents("http://iframe-source-url/");
it.