If I am reading jpegs off an external site, will something like th 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