Page 1 of 1

How to send a string to online *.php?test=SomeString ?

Posted: Tue Jan 01, 2019 11:47 pm
by T4r4ntul4
Hi all,

Iam trying to solve this now for the past hour or so, but for some reason i cant get it to work:

Iam trying simply to send some string to: for example: http://www.yourdomain.nl/some/someother ... SendFromPB

i have a php script to receive the string and save it in a txt file, so thats not the problem.

The question is:
How can i send a string from PB to that php?

Any help is very appreciated!

Re: How to send a string to online *.php?test=SomeString ?

Posted: Wed Jan 02, 2019 12:03 am
by firace
Unless I misunderstand your question, this should be as easy as:

Code: Select all

ReceiveHTTPFile("http://www.yourdomain.nl/some/someother/index.php?test=SomeTextHereToSendFromPB","temp.html")
(Just discard the temp.html file if you don't need it)

Re: How to send a string to online *.php?test=SomeString ?

Posted: Wed Jan 02, 2019 12:09 am
by T4r4ntul4
That works, i just didnt think to need that command because i dont need to receive anything... oh well.
Its working now, Thanks!