I'd like to be able to 'ping' a php page from my current php page, both on the same server. Once this happens, though, I don't want the 'ping' to hold up my script. Is this possible?
more detail: I want to send a request to another php page that will be used to log actions. So i'll pass different parameters in the url that another page will then read and process etc.
is there a better way to do this? the key is that I want to run the page and move on, regardless of whether or not the page i'm pinging actually works -- like it is running in parallel.
What i'm using now: file_get_contents("http://domain.com/track.php?type=error&code=4");