Gossamer Forum
Home : Products : DBMan : Customization :

Build a new field to the Database

Quote Reply
Build a new field to the Database
I build a new field to my database

'Admins' => [16, 'alpha', 20, 15, 0, '', '']

Then i paste the following text in html.pl

sub html_modify_form_record {
# --------------------------------------------------------
# The user has picked a record to modify and it should appear
# filled in here stored in %rec. If we can't find the record,
# the user is sent to modify_failure.


if ($per_mod) {
$rec{'Admins'} = $db_uid;
$rec{'Admins'} =~ s/\..*//;
}

because i want to know who was the last user who modify the record
but nothing is written to the database.

what did i have to do

Thanks