Gossamer Forum
Home : Products : Others : Gossamer Community :

Convert Birthday Date in profile

Quote Reply
Convert Birthday Date in profile
Hi,
in my gcomm profile page, I'm trying to convert the birthday date.
The following code converts the date into the right form, but prints out the wrong date.
It shows only the default value of the birthday field???

Code:
<%GT::Date::date_get($profile_prof_birthday, "%dd%.%mm%.%yyyy%")%>

Any ideas how to fix this?
Thanks
Matthias

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] Convert Birthday Date in profile In reply to
Try:

<%GT::Date::date_transform($field,'old_format','new_format')%>

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Convert Birthday Date in profile In reply to
Andy wrote:
Try:

<%GT::Date::date_transform($field,'old_format','new_format')%>

Cheers

Hi Andy,
no this code
Code:
<%GT::Date::date_get($profile_prof_birthday,"%yyyy%-%mm%-%dd%","%dd%.%mm%.%yyyy%")%>

prints out the wrong format and the wrong date Wink

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] Convert Birthday Date in profile In reply to
Hi,

I didn't say GT::SQL::date_get() - I said GT::Date::date_transform() Wink

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Convert Birthday Date in profile In reply to
Andy wrote:
I didn't say GT::SQL::date_get() - I said GT::Date::date_transform() Wink

Uhh, it's time to go to bed Sly

Code:
<%GT::Date::date_transform($profile_prof_birthday,"%yyyy%-%mm%-%dd%","%dd%.%mm%.%yyyy%")%>

is working perfect.

Thanks

Matthias
gpaed.de
Quote Reply
Re: [Matthias70] Convert Birthday Date in profile In reply to
Hi,

Quote:
Uhh, it's time to go to bed Sly

LOL, thats exactly what I did after replying <G> Been up 11 hours working.

Quote:
is working perfect.

Glad to hear it :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!