How can I use javascript to send a one way message to php? I would like to get the browser information from javascript and just send it to php in the background. I know I can get some of this from php, but I’d rather use javascript. Is there a way to do this without a framework like jquery?
Share
Yes, you can do it with something like this:
This will send “browser info here” as POST in the php page you pass to the function as url. I didnt test it though