This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

procedure http_set_post(cp: HTTPConnection; const data: string);

Arguments:

cp Connection handle
data URLEncoded POST data

Description:

This function sets post data for POST request method. It should be called before sending the request. Data should contain pairs of URL-encoded variable names and values.

Usage:

http_set_post(cp, 'foo=bar&line=' + url_encode('A line!'));

See also:

http_request, url_encode.

PSP Help documents