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_unset_cookie_ex(const name, path, domain: string): boolean;

Arguments:

name Variable name
path Server directory path (doc root related)
domain Domain name

Description:

Unsets custom cookie which has been set with web_set_cookie_ex. Path and domain must be same for set and unset calls. If output_buffering is disabled this call is valid only before any output (web_print[xxx] calls).

Returns:

TRUE on success, FALSE on error.

Usage:

web_unset_cookie_ex('foo', '/cgi-bin/mydir', 'www.server.net');

See also:

web_set_cookie_ex.

PSP Help documents