tags:

views:

84

answers:

2

I'm pretty sure there's a way to use curl in php to make a proxy server so my question is more, will that use my bandwidth? if there is a way to have it not use my bandwidth how would that look?

A: 

I am not sure if I understood your question.

Even if you are connecting via a proxy server, your bandwidth will be used. It is just that the server at the other end will have no idea about the IP address (or other details) of your system (it will have the details of the proxy instead).

Alan Haggai Alavi
A: 

Any data transfer eats your bandwidth. So, you are out of luck.

The only possiblity is to strip redundant stuff and compress everything going through - this might save up to 50% of the bandwidth.

BarsMonster
that's what I thought. there really isn't anyway around using files off another server but making it looked like it came from yours, right?
will
Nope. You may just offload part of stuff to other subdomain with different IP.
BarsMonster