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 url_encode(const svar: string): string;

Arguments:

svar Source string for encoding

Description:

This function returns RFC2068 (HTTP) UrlEncoded string of svar.

Returns:

URL-Encoded string safe for passing in HTTP request.

Usage:

s := 'Look at encoded value!';
s := url_encode(s);
writeln(s);

See also:

url_decode.

PSP Help documents