Hi,
I am trying serve an affiliate page on my website using the following code
It pulls the page text fine, but I am not getting any of the images from the original page, due too they are referenced ./images and I think the page I am pulling is trying to get the images from my site.
Is there a way to get these images, via PHP, without downloading them to my site?
Thanks
I am trying serve an affiliate page on my website using the following code
Code:
<?php
$file = file_get_contents ('hxxp://affiliate_site/');
Echo $file;
?>
It pulls the page text fine, but I am not getting any of the images from the original page, due too they are referenced ./images and I think the page I am pulling is trying to get the images from my site.
Is there a way to get these images, via PHP, without downloading them to my site?
Thanks