How would one go about hitting a URL with a query string from within the middle of a php script execution?
Say for instance, you have a function, that sends data to a URL by going to "http://blah.duh.com/thing.app?data=urlencodedcrud".
Whats a good way to do this? I tried using "virtual" but that is seriously screwed... as what it hits then overwrites all my vars with its own (stupid function, acts just like a require or include).
I tried a readfile() but that failed with errors... anyone know a way? There has got to be a way to do this without needing the client browser to be bothered with the entire process.