( |
|
|
|||
Retrieves a variable value for current web visitor session. |
Parameters: | |
Name of the variable | |
global procedure SessionAddToArray(string name,string text) begin Integer cnt; cnt = StringToInt(GetSessionString(name & "cnt")); PutSessionString(name & cnt,text); cnt = cnt + 1; PutSessionString(name & "cnt",cnt); return; end;
Related topics: |