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_is_var(const name: string): byte;

Arguments:

name Variable name

Description:

Checks whether such PSP variable exists.

Returns:

Returned values are:
  • 0 = variable not found
  • 1 = is dynamic/template variable
  • 2 = is session variable
  • 3 = is cookie variable
  • 4 = is CGI variable

Usage:

b := web_is_var('name');
case b of
	0: // Some actions
	1: // Some actions
	2: // Some actions
	3: // Some actions
	4: // Some actions
end;

See also:

web_get_var.

PSP Help documents