Hi i was wondering if i were to use the script
<?php
$id = $_GET['id'];
Header("Content-Type: image/gif");
$fn=fopen("./$id.jpg","r");
fpassthru($fn);
?>
which makes it print the image out of the php file... so if the php is printing the image would that mean that the php file is taking however big the picture is in bandwith?
ex: im hosting my images from another server(unlimited bandwith) but the php script that prints the image is on my server(has limited bandwith) would i run out of badwith if i showed all my images with the php script??