Send a request to the server connected to using Connect.
function SendRequest(const ServerFile: String; const PostData: String = ''): String;
Parameters |
Description |
const ServerFile: String |
The file to request from the server, include everything after the domain part of the URL. |
const PostData: String = '' |
(optional) The raw post data to send to the server. Note that & and = are special characters that separate variables. |
The server reply.
For example if requesting http://www.thegamecreators.com/index.php, ServerFile should be 'index.php'. Also allows you to send POST data to the server which can include variables or file data, e.g. 'myvar=5&var2=test'. This method waits for the server to respond and returns the server reply.
Copyright (c) 2012. All rights reserved.
|