InternetPostRequest
|
File Input/Output functions |
SYNTAX | InternetPostRequest(''http://url_to_your_web_resource'', data, flags = 0) |
RETURNS | HANDLE |
FUNCTION | The function sends URL-encoded data via HTTP Post request to the specified URL and returns a special file handle to be used by InternetReadString/InternetClose functions. It allows to open any web page or REST API service |
EXAMPLE | ih = InternetPostRequest( "http://server_name_here.com/testpost.php?param3=7&m4=8", /*POST DATA*/ "param1=9&m2=12" );
|
SEE ALSO | InternetOpenURL() function , InternetClose() function , InternetReadString() function |
The InternetPostRequest function is used in the following formulas in AFL on-line library:
See updated/extended version on-line.