readfile() on external images effect on bandwidth?
Posted: Sat Sep 16, 2006 2:20 am
Hello everyone!
If I am reading jpegs off an external site (like flickr), will something like the following actually use my bandwidth for loading the image?...I guess the better way to say it is, does the image actually go through my server if I do this?
<?
$path = $_GET['image'];
header("Content-type: image/jpg");
@readfile($path);
?>
Cheers!
Cary
If I am reading jpegs off an external site (like flickr), will something like the following actually use my bandwidth for loading the image?...I guess the better way to say it is, does the image actually go through my server if I do this?
<?
$path = $_GET['image'];
header("Content-type: image/jpg");
@readfile($path);
?>
Cheers!
Cary