So i have this code :
Code:
formatex( szData, charsmax( szData ), "GET /cs/page.php?n=%s HTTP/1.1^r^nHost:%s^r^nConnection: close^r^n^r^n", pName, gRedirectHost );
socket_send( RedirectSocket, szData, charsmax( szData ) );
And the problem is it doesn't do nothing or something that i want.. the question is how would i corect this code in order to work ?
What i'm trying to do is this :
When the plugins starts access the link
mysite.mydomain/cs/page.php?n=ACvarName
And the rest is php which i know how to do.. also i don't know if socket_send is the thing for me or not..