function PostHTTPPage(Client: Integer;const Url,PostData: string): string;
I want to automate buying items on a website that is already opened. When I changed the form method from POST to GET, the url became 'site.com/items.php?shirt=1&pant=0&buy=Buy+Items'.
1. Is this correct?
2. How do I get the client?Simba Code:PostHTTPPage(Client, 'site.com/items.php', 'shirt=1&pant=0&buy=Buy+Items');
returned 0.Simba Code:writeln(tostr(initializeHTTPclient(false)));
3. The function is supposed to return a string - why?


Reply With Quote