Gossamer Forum
Home : Products : Gossamer Links : Discussions :

user add_date

Quote Reply
user add_date
I want to know when Users have registered. I can put a field add_date in the users table but what is needed to auto-fill the field with the date?
Quote Reply
Re: [Alba] user add_date In reply to
You need to add a column to Admin / Database / Users / Properties with the following info:

Column Name: Add_Date
Column Type: DATE
Not Null: Yes
Default: 0000-00-00
Form Display: Add Date
Form Type: HIDDEN


Then add the following to signup_form.html

Code:
<input type=hidden name="Add_Date" value="<%GT::Date::date_get()%>">
Quote Reply
Re: [MJB] user add_date In reply to
Hi,

Is it possible to add time offset to the date?
Quote Reply
Re: [MJB] user add_date In reply to
Thanks, simple but I just couldn't think of it.