Adam
|
| Posted: 12/13/2002, 9:06 AM |
|
I need to populate a table with the id from the logon table, ie. each new
entry to the table needs to have by default the user entering the data.
Hoping its something relatively easy.
Thanks in advance
|
|
|
 |
Kasper Pedersen
|
| Posted: 12/19/2002, 6:48 AM |
|
// OnValidate
FormInQuestion.HiddenFieldInQuestion.Value = CCUserID()
..... or php ...
global $FormInQuestion;
$FormInQuestion->HiddenFieldInQuestion->SetValue( CCUserID() )

"Adam" <administrator@ctdhe.org> wrote in message
news:atd42s$v20$1@news.codecharge.com...
> I need to populate a table with the id from the logon table, ie. each new
> entry to the table needs to have by default the user entering the data.
>
> Hoping its something relatively easy.
>
> Thanks in advance
>
>
|
|
|
 |
|