[Overview][Constants][Procedures and functions] | Reference for unit 'pwumain' (#powtils_main) |
Source position: pwumain.pas line 70
function FetchCgiVarName( |
index: LongWord |
):String; |
var cnt: integer; begin cnt:= CountCgiVars; // print both name and value of all cgi vars if cnt > 0 then for i := 0 to cnt - 1 do webwrite(FetchCgiVarName(i) + '=' + FetchCgiVarValue(i) + '<br />' ); end.