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_disable_tags(const str: string): string;

Arguments:

str Source string

Description:

Removes all unsafe characters with their HTTP macro equivalents. Primary XSS protection.

Returns:

Replacement result string.

Usage:

s := 'I am unsafe <script>';
s := web_disable_tags(s);
web_print(s);

See also:

web_nl2br.

PSP Help documents