Table of Content
HAL Forum
procedure PutSessionString (
string Variable,string Value)
Description:
Changes or adds a variable value for current web visitor session.
Parameters:
Variable Name of the variable to be created/changed
Value Value for 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:
««