Difference between revisions of "PostHTTPPage"

From SCAR Divi Manual
Jump to: navigation, search
(Description)
Line 18: Line 18:
 
   i := InitializeHTTPClient(True, True);
 
   i := InitializeHTTPClient(True, True);
 
   try
 
   try
     WriteLn(PostHTTPPage(i, 'http://services.scar-divi.com/doc/post.php',
+
     WriteLn(PostHTTPPage(i, 'http://doc.scar-divi.com/post.php',
 
       'post1=Hello&post2=World!'));
 
       'post1=Hello&post2=World!'));
 
   finally
 
   finally

Revision as of 11:27, 3 July 2011

Definition

function PostHTTPPage(const iHttp: Integer; const Url: AnsiString; const PostData: AnsiString): AnsiString;

Availability

SCAR Divi 3.00 > Current

Description

Gets the content of a webpage specified by Url from an open HTTP connection specified by iHttp while sending a set of post variables given by the string PostData. PostData is structured as "var1=val1&var2=val2&...&varn=valn". An extended function with additional functionality is available as PostHTTPPageEx.

Example

var
  i: Integer;

begin
  i := InitializeHTTPClient(True, True);
  try
    WriteLn(PostHTTPPage(i, 'http://doc.scar-divi.com/post.php',
      'post1=Hello&post2=World!'));
  finally
    FreeHTTPClient(i);
  end;
end.

Output:

---POST variables---
Name: post1; Value: Hello
Name: post2; Value: World!

See Also