in reply to Secure way of passing variables between forms
There are more ways of doing this than you'd might imagine. Some ways are quite inventive. Let me run a few by you:
You'd then store the values and retrieve them between pages as appropriate. You'd also need some logic in place in your code that detects that a session has expired and cleans that table out periodically of expired information.create table session_vars ( session_var_id integer not null default nexval ('session_var_id_seq') primary key, session_id varchar(180) not null, session_var varchar(180) not null, -- or whatever size makes sense session_value varchar(180) not null -- again... what makes sense );
There's two approaches, I'm sure other monks can come up with other ways.
|
|---|