Simple enough question... if I use the script below to load an image would this be using my bandwidth? even if the 'file' is from an external domain?
loadImage.php?file=http://www.domain.com/image.png
<?php header("Content-Type: image/png"); readfile($file); ?>
Yes, it will. The script runs on your server so the readfile is reading the file to your server and then displaying it to the guest.
Thought so... Thank you. 🙂