Page 1 of 1

HTTPRequest() adds a parameter ...&_=value

Posted: Mon Aug 12, 2019 9:35 pm
by majikeyric
Hi!

I noticed when HTTPRequest() is executed, a parameter named : _ (underscore) is added to the parameters list with a certain value.

Code: Select all

HTTPRequest(#PB_HTTP_Get, "my_script.php", "a=1", @callback())
in fact sends the parameters :

Code: Select all

a=1&_=value

eg.

a=1&_=56565232333
Any idea what is the use of this silent param ???? :)

Re: HTTPRequest() adds a parameter &_=value

Posted: Mon Aug 12, 2019 10:59 pm
by Peter
majikeyric wrote:Any idea what is the use of this silent param ????
This parameter is used to prevent caching problems.

Greetings ... Peter