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:

function http_response_info(cp: HTTPConnection; var final_url, message: string): word;

Arguments:

cp Connection handle
final_url Final URL in redirect case
message HTTP response message

Description:

This function fetches advanced response information in case of error during http_request call.

Returns:

HTTP response code, e.g. 404.

Usage:

if not http_request(cp, 'GET', '/index.html') then
	code := http_response_info(cp, furl, msg);

See also:

http_request, http_get_header.

PSP Help documents