tukaran
|
| Posted: 06/13/2002, 11:39 PM |
|
Hi,
How could I create a new session variable?
I have a page_param variable that I need to pass through different page but the problem with the record form is that once you insert,update or delete this page_param will dissappear. I would like to use it as a session variable to pass through different page
|
|
|
 |
Alex Alexapolsky
|
| Posted: 06/14/2002, 2:28 AM |
|
Open After update of After Insert evetns , and ... it's like this
(ASP)
session("var_name") = fldfield_name
(PHP)
set_session("var_name",$fldfield_name);
|
|
|
 |
|