a_http question
#1

Dear guys and girls,

I've got a question. Could anyone help me please? Thank you all for helping me lately.

I'm trying to post/get using this function:

Код:
    	if(strcmp(cmd, "/hello", true) == 0)
    {
        HTTP(playerid, HTTP_GET, "website.com/hello.php?=USERNAMEHERE", "", "MyHttpResponse");
        return 1;
    }
Is there a way to get the player's name here 'USERNAMEHERE'?
Reply
#2

pawn Код:
new url[64],n[24];
GetPlayerName(playerid,n,24);
format(url,64,"website.com/hello.php?=%s",n);
HTTP(playerid, HTTP_GET, url, "", "MyHttpResponse");
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)