What I'm need is to get source code of some webpage URL:
$url = 'http://www.kupime.com/';
$data = file_get_contents($url);
after that string I need to save as HTML file in my server folder and after that I need to save other elements od pages (images,css and JS files) and also put on server folder...
After that all, I need to show this page as on my domain to looks like iframe but with source code which I need for other actions.
HOW TO DO THAT! with php file_get_contents or with some cUrl functions or ... suggest you!