[C++] Opening a url silently
I want to make an online users counter for my game hack in c++ , i have used free ftp server to host a txt file that changes whenever this http url
"https://mysite/count.php?action=add" is opened and adds 1 to the counter text file also subtracts 1 by replacing "add" to "take" all this by using a php script.
Now this should be added to the hack so i want to open this link silently or somehow without opening the browser window to count whenever a user run the hack (injecting it).
You could use winsock to connect, and pass the headers to request this page yourself.