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 web_get_cookie(const name: string): string;
function web_get_cookief(const name: string): double;
function web_get_cookiei(const name: string): longint;

Arguments:

name Variable name

Description:

Returns cookie variable value.

Returns:

Variable value as string, double precision float or long integer or empty/null on error.

Usage:

s := web_get_cookie('name');
i := web_get_cookiei('count');
r := web_get_cookief('price');

See also:

web_set_cookie.

PSP Help documents