greetings,
I am sending data to another script using fopen
$url = "http://someurl.net/page.php?var1=val1
$handle = fopen($url,"r");
if($handle){ echo "success"; }
else { echo "failure"; }
The script works fine, it sends the data and the data is written to a file. My question is, when fopen opens a URL, who's bandwidth is being used?
During a system call, the server goes out through a socket using the server's bandwidth. during fopen, is it using the user's internet connection to call the URL?
thanks,
- keith