masster
|
| Posted: 04/15/2002, 4:15 AM |
|
I need to transfer to another form the field value that I input in a Record type form. How I can do that in two different cases:
1) The field type is Textbox.
2) The field type is Hidden.
I'm working in PHP+MySQL.
Thank you.
|
|
|
 |
Alex Alexapolsky
|
| Posted: 04/15/2002, 5:27 AM |
|
Save it to session variable in After Update/Insert event.
Like
session("variable_name") = fldfield_name
|
|
|
 |
Alex Alexapolsky
|
| Posted: 04/15/2002, 5:28 AM |
|
Follow up , for php it would be
set_session("var_name",$fldfield_name);
|
|
|
 |
|