I'm implementing various PHP & ASP.NET web apps for a client.
I'd like to install a very low overhead user tracking system. (It has to be on the intranet, this is an internal system only).
I'd like to do something like the following:
line 1 normal code
line 2 normal code
line 3 Send Request/Query/Info to http://internal-IP/userTracker.php?Name=UserName&Page=...
line 4 Code that proceeds immediately after line 3 without waiting for a reply of any sort.
"Fire and Forget" seems to be the best analogy here.
Any tips?
Thanks!