I want to send some info to a server using cookie for authentication:
http://exampleserver.com/get?parm1=val1&parm2=val2&parm3=val3
with
cookie1=asd123;cookie2=enc%19
I want only to send the request and do not wait for the response. I only need server to register the data, as depending on amount of the data sent, tge wait for the response from client side could become too high, and so I want it to be fast.
I know PHP
is blocking, but is is possible to do this in some way?