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_fetch_upfile_name(index: longword): string;

Arguments:

index Null based index in the list

Description:

Indexed access to uploaded file (variable) name in the list.

Returns:

Uploaded file (variable) name string.

Usage:

if web_count_upfiles > 0
for i := 0 to web_count_upfiles - 1 do
	begin
		s := web_fetch_upfile_name(i);
		web_save_upfile(s, web_get_upfile_name);
	end;

See also:

web_get_upfile_name, web_get_upfile_size, web_get_upfile_type, web_save_upfile.

PSP Help documents