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